Skip to content

Commit 644e356

Browse files
chore: Fix Spelling (#16)
1 parent 7c1e7b8 commit 644e356

2 files changed

Lines changed: 55 additions & 12 deletions

File tree

LICENSE.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2025 Webflow
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 34 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Webflow MCP
22

3-
A Node.js server implementing Model Context Protocol (MCP) and the [Webflow JavaScript SDK](https://github.com/webflow/js-webflow-api), enabling AI agents to interact with Webflow. Learn more about Webflow's APIs in the [developer documentation](https://developers.webflow.com/data/reference).
3+
A Node.js server implementing Model Context Protocol (MCP) for Webflow using the [Webflow JavaScript SDK](https://github.com/webflow/js-webflow-api). Enable AI Clients to interact with the [Webflow APIs](https://developers.webflow.com/data/reference) through the Model Context Protocol (MCP). Learn more about Webflow's APIs in the [developer documentation](https://developers.webflow.com/data/reference).
44

55
[![npm shield](https://img.shields.io/npm/v/webflow-mcp-server)](https://www.npmjs.com/package/webflow-mcp-server)
66
[![fern shield](https://img.shields.io/badge/%F0%9F%8C%BF-Built%20with%20Fern-brightgreen)](https://buildwithfern.com/?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2Fwebflow%2Fmcp-server)
@@ -9,7 +9,7 @@ A Node.js server implementing Model Context Protocol (MCP) and the [Webflow Java
99

1010
- [Node.js](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm)
1111
- [NPM](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm)
12-
- [A Wefblow Account](https://webflow.com/signup)
12+
- [A Webflow Account](https://webflow.com/signup)
1313

1414
## ▶️ Quick start
1515

@@ -27,7 +27,7 @@ A Node.js server implementing Model Context Protocol (MCP) and the [Webflow Java
2727
"mcpServers": {
2828
"webflow": {
2929
"command": "npx",
30-
"args": ["-y", "webflow-mcp-server@latest"],
30+
"args": ["-y", "webflow-mcp-server"],
3131
"env": {
3232
"WEBFLOW_TOKEN": "YOUR_API_TOKEN"
3333
}
@@ -52,40 +52,62 @@ A Node.js server implementing Model Context Protocol (MCP) and the [Webflow Java
5252

5353
## 🛠️ Available tools
5454

55+
**For Cursor:**
56+
57+
1. Go to Settings → Cursor Settings → MCP
58+
2. Click `+ Add New Global MCP Server`
59+
3. Paste configuration
60+
4. Save and verify server status
61+
62+
**For Claude Desktop:**
63+
64+
1. Open Settings → Developer
65+
2. Click `Edit Config`
66+
3. Paste configuration
67+
4. Save and **restart** Claude
68+
69+
## 🛠️ Available tools
70+
5571
### Sites
5672

73+
````ts
74+
sites - list; // List all sites
75+
sites - get; // Get site details
76+
sites - publish; // Publish site changes
5777
```ts
5878
sites - list; // List all sites
5979
sites - get; // Get site details
6080
sites - publish; // Publish site changes
61-
```
81+
````
6282
6383
### Pages
6484
85+
````ts
86+
pages - list; // List all pages
87+
pages - get - metadata; // Get page metadata
88+
pages - update - page - settings; // Update page settings
89+
pages - get - content; // Get page content
90+
pages - update - static - content; // Update page content
6591
```ts
6692
pages - list; // List all pages
6793
pages - get - metadata; // Get page metadata
6894
pages - update - page - settings; // Update page settings
6995
pages - get - content; // Get page content
7096
pages - update - static - content; // Update page content
71-
```
97+
````
7298

7399
### CMS
74100

75101
```ts
76102
collections - list; // List collections
77103
collections - get; // Get collection details
78-
collections - items - list - items; // List collection items
79-
collections - items - create - item; // Create items (draft)
80-
collections - items - create - item - live; // Create items (published)
81-
collections - items - update - items; // Update items (draft)
82-
collections - items - update - items - live; // Update items (published)
83-
collections - items - publish - items; // Publish existing items
104+
collections - items - create - item - live; // Create items
105+
collections - items - update - items - live; // Update items
84106
```
85107

86108
# 🗣️ Prompts & Resources
87109

88-
This implementation **does not** include MCP prompts or resources. However, this may change in the future.
110+
This implementation **does not** include prompts and resources. However, this may change in the future.
89111

90112
# 🚧 Development mode
91113

0 commit comments

Comments
 (0)