From 48c434322b9bc45aa9f36e8e92850715cc040752 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Wed, 11 Feb 2026 13:25:17 +0000 Subject: [PATCH 1/4] 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 --- servers/com.webflow-mcp.json | 64 ++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 servers/com.webflow-mcp.json diff --git a/servers/com.webflow-mcp.json b/servers/com.webflow-mcp.json new file mode 100644 index 0000000..ffe1aeb --- /dev/null +++ b/servers/com.webflow-mcp.json @@ -0,0 +1,64 @@ +{ + "$schema": "../schemas/server-definition.schema.json", + "id": "com.webflow-mcp", + "name": "Webflow", + "alias": "webflow", + "description": "Manage Webflow sites, collections, and CMS items. Create and update pages, manage forms, and interact with e-commerce data.", + "icon": "https://avatars.githubusercontent.com/u/1229663?v=4", + "schema_version": "2.1", + "categories": ["developer-tools", "cloud"], + "tags": ["webflow", "website", "cms", "e-commerce", "no-code", "design"], + + "transport": { + "type": "stdio", + "command": "npx", + "args": ["-y", "webflow-mcp-server@latest"], + "env": { + "WEBFLOW_TOKEN": "${input:WEBFLOW_TOKEN}" + }, + "metadata": { + "inputs": [ + { + "id": "WEBFLOW_TOKEN", + "label": "Webflow API Token", + "description": "API token for the Webflow Data API v2.", + "type": "password", + "required": true, + "secret": true, + "placeholder": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", + "obtain": { + "url": "https://developers.webflow.com/data/reference/authorize-user", + "instructions": "1. Go to Webflow > Site Settings > Integrations\n2. Click 'Generate API token'\n3. Select the permissions you need\n4. Copy the token", + "button_label": "Generate Token" + } + } + ] + } + }, + + "auth": { + "type": "api_key", + "instructions": "Generate an API token in Webflow Site Settings > Integrations" + }, + + "contributor": { + "name": "Webflow", + "github": "webflow", + "url": "https://webflow.com" + }, + + "links": { + "repository": "https://github.com/webflow/mcp-server", + "homepage": "https://webflow.com", + "documentation": "https://developers.webflow.com/mcp/reference/overview" + }, + + "platforms": ["all"], + + "capabilities": { + "tools": true, + "resources": false, + "prompts": false, + "read_only_mode": false + } +} From e61d1c548e640bd98e62e67e68ffe1f6a2991a3e Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 19:11:35 +0800 Subject: [PATCH 2/4] fix: update server definition (input type 'password' -> 'text' for WEBFLOW_TOKEN) --- servers/com.webflow-mcp.json | 31 ++++++++++++++++++++----------- 1 file changed, 20 insertions(+), 11 deletions(-) diff --git a/servers/com.webflow-mcp.json b/servers/com.webflow-mcp.json index ffe1aeb..5fa2183 100644 --- a/servers/com.webflow-mcp.json +++ b/servers/com.webflow-mcp.json @@ -6,13 +6,25 @@ "description": "Manage Webflow sites, collections, and CMS items. Create and update pages, manage forms, and interact with e-commerce data.", "icon": "https://avatars.githubusercontent.com/u/1229663?v=4", "schema_version": "2.1", - "categories": ["developer-tools", "cloud"], - "tags": ["webflow", "website", "cms", "e-commerce", "no-code", "design"], - + "categories": [ + "developer-tools", + "cloud" + ], + "tags": [ + "webflow", + "website", + "cms", + "e-commerce", + "no-code", + "design" + ], "transport": { "type": "stdio", "command": "npx", - "args": ["-y", "webflow-mcp-server@latest"], + "args": [ + "-y", + "webflow-mcp-server@latest" + ], "env": { "WEBFLOW_TOKEN": "${input:WEBFLOW_TOKEN}" }, @@ -22,7 +34,7 @@ "id": "WEBFLOW_TOKEN", "label": "Webflow API Token", "description": "API token for the Webflow Data API v2.", - "type": "password", + "type": "text", "required": true, "secret": true, "placeholder": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", @@ -35,26 +47,23 @@ ] } }, - "auth": { "type": "api_key", "instructions": "Generate an API token in Webflow Site Settings > Integrations" }, - "contributor": { "name": "Webflow", "github": "webflow", "url": "https://webflow.com" }, - "links": { "repository": "https://github.com/webflow/mcp-server", "homepage": "https://webflow.com", "documentation": "https://developers.webflow.com/mcp/reference/overview" }, - - "platforms": ["all"], - + "platforms": [ + "all" + ], "capabilities": { "tools": true, "resources": false, From ae5ef0fb392e5e3283f5637a1a5bc8d3c3708db8 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 19:20:47 +0800 Subject: [PATCH 3/4] fix: update Webflow token obtain URL --- servers/com.webflow-mcp.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/servers/com.webflow-mcp.json b/servers/com.webflow-mcp.json index 5fa2183..cf1fbbb 100644 --- a/servers/com.webflow-mcp.json +++ b/servers/com.webflow-mcp.json @@ -39,8 +39,8 @@ "secret": true, "placeholder": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", "obtain": { - "url": "https://developers.webflow.com/data/reference/authorize-user", - "instructions": "1. Go to Webflow > Site Settings > Integrations\n2. Click 'Generate API token'\n3. Select the permissions you need\n4. Copy the token", + "url": "https://developers.webflow.com/data/reference/authentication/site-token", + "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", "button_label": "Generate Token" } } From 19856abececf46fd9f612ef739aae74355830c76 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 22:46:22 +0800 Subject: [PATCH 4/4] 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 --- servers/{com.webflow-mcp.json => com.webflow-mcp-npx.json} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename servers/{com.webflow-mcp.json => com.webflow-mcp-npx.json} (97%) diff --git a/servers/com.webflow-mcp.json b/servers/com.webflow-mcp-npx.json similarity index 97% rename from servers/com.webflow-mcp.json rename to servers/com.webflow-mcp-npx.json index cf1fbbb..e23ea7b 100644 --- a/servers/com.webflow-mcp.json +++ b/servers/com.webflow-mcp-npx.json @@ -1,7 +1,7 @@ { "$schema": "../schemas/server-definition.schema.json", - "id": "com.webflow-mcp", - "name": "Webflow", + "id": "com.webflow-mcp-npx", + "name": "Webflow (npx)", "alias": "webflow", "description": "Manage Webflow sites, collections, and CMS items. Create and update pages, manage forms, and interact with e-commerce data.", "icon": "https://avatars.githubusercontent.com/u/1229663?v=4",