Skip to content

Commit ec720e9

Browse files
authored
feat: add Webflow MCP server definition (#84)
* Add Webflow MCP server definition Official Webflow MCP server for managing sites, collections, and CMS items. Uses webflow-mcp-server npm package with stdio transport. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx * fix: update server definition (input type 'password' -> 'text' for WEBFLOW_TOKEN) * fix: update Webflow token obtain URL * fix: rename server files with transport suffix - com.webflow-mcp.json -> com.webflow-mcp-npx.json (id: com.webflow-mcp-npx) Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com> --------- Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com>
1 parent 838ac5f commit ec720e9

1 file changed

Lines changed: 73 additions & 0 deletions

File tree

servers/com.webflow-mcp-npx.json

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.webflow-mcp-npx",
4+
"name": "Webflow (npx)",
5+
"alias": "webflow",
6+
"description": "Manage Webflow sites, collections, and CMS items. Create and update pages, manage forms, and interact with e-commerce data.",
7+
"icon": "https://avatars.githubusercontent.com/u/1229663?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"developer-tools",
11+
"cloud"
12+
],
13+
"tags": [
14+
"webflow",
15+
"website",
16+
"cms",
17+
"e-commerce",
18+
"no-code",
19+
"design"
20+
],
21+
"transport": {
22+
"type": "stdio",
23+
"command": "npx",
24+
"args": [
25+
"-y",
26+
"webflow-mcp-server@latest"
27+
],
28+
"env": {
29+
"WEBFLOW_TOKEN": "${input:WEBFLOW_TOKEN}"
30+
},
31+
"metadata": {
32+
"inputs": [
33+
{
34+
"id": "WEBFLOW_TOKEN",
35+
"label": "Webflow API Token",
36+
"description": "API token for the Webflow Data API v2.",
37+
"type": "text",
38+
"required": true,
39+
"secret": true,
40+
"placeholder": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
41+
"obtain": {
42+
"url": "https://developers.webflow.com/data/reference/authentication/site-token",
43+
"instructions": "1. Go to your Webflow site settings\n2. Navigate to Apps & integrations\n3. Click on API access\n4. Click 'Generate API token'\n5. Copy the generated token",
44+
"button_label": "Generate Token"
45+
}
46+
}
47+
]
48+
}
49+
},
50+
"auth": {
51+
"type": "api_key",
52+
"instructions": "Generate an API token in Webflow Site Settings > Integrations"
53+
},
54+
"contributor": {
55+
"name": "Webflow",
56+
"github": "webflow",
57+
"url": "https://webflow.com"
58+
},
59+
"links": {
60+
"repository": "https://github.com/webflow/mcp-server",
61+
"homepage": "https://webflow.com",
62+
"documentation": "https://developers.webflow.com/mcp/reference/overview"
63+
},
64+
"platforms": [
65+
"all"
66+
],
67+
"capabilities": {
68+
"tools": true,
69+
"resources": false,
70+
"prompts": false,
71+
"read_only_mode": false
72+
}
73+
}

0 commit comments

Comments
 (0)