Skip to content

Commit 48c4343

Browse files
committed
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
1 parent 0217546 commit 48c4343

1 file changed

Lines changed: 64 additions & 0 deletions

File tree

servers/com.webflow-mcp.json

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.webflow-mcp",
4+
"name": "Webflow",
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": ["developer-tools", "cloud"],
10+
"tags": ["webflow", "website", "cms", "e-commerce", "no-code", "design"],
11+
12+
"transport": {
13+
"type": "stdio",
14+
"command": "npx",
15+
"args": ["-y", "webflow-mcp-server@latest"],
16+
"env": {
17+
"WEBFLOW_TOKEN": "${input:WEBFLOW_TOKEN}"
18+
},
19+
"metadata": {
20+
"inputs": [
21+
{
22+
"id": "WEBFLOW_TOKEN",
23+
"label": "Webflow API Token",
24+
"description": "API token for the Webflow Data API v2.",
25+
"type": "password",
26+
"required": true,
27+
"secret": true,
28+
"placeholder": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
29+
"obtain": {
30+
"url": "https://developers.webflow.com/data/reference/authorize-user",
31+
"instructions": "1. Go to Webflow > Site Settings > Integrations\n2. Click 'Generate API token'\n3. Select the permissions you need\n4. Copy the token",
32+
"button_label": "Generate Token"
33+
}
34+
}
35+
]
36+
}
37+
},
38+
39+
"auth": {
40+
"type": "api_key",
41+
"instructions": "Generate an API token in Webflow Site Settings > Integrations"
42+
},
43+
44+
"contributor": {
45+
"name": "Webflow",
46+
"github": "webflow",
47+
"url": "https://webflow.com"
48+
},
49+
50+
"links": {
51+
"repository": "https://github.com/webflow/mcp-server",
52+
"homepage": "https://webflow.com",
53+
"documentation": "https://developers.webflow.com/mcp/reference/overview"
54+
},
55+
56+
"platforms": ["all"],
57+
58+
"capabilities": {
59+
"tools": true,
60+
"resources": false,
61+
"prompts": false,
62+
"read_only_mode": false
63+
}
64+
}

0 commit comments

Comments
 (0)