|
| 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