Skip to content

Commit 43bd03d

Browse files
committed
Update, clean up README
1 parent d0e41bf commit 43bd03d

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

README.md

Lines changed: 10 additions & 4 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) 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).
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 agents to interact with Webflow APIs. Learn more about Webflow's Data API 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)
@@ -43,7 +43,13 @@ Or if you'd like to connect to Webflow's official remote MCP server:
4343
"mcpServers": {
4444
"webflow-remote": {
4545
"command": "npx",
46-
"args": ["mcp-remote", "<URL>/sse?accessToken=<YOUR_WEBFLOW_TOKEN>"]
46+
"args": [
47+
"-y",
48+
"mcp-remote",
49+
"<URL>/sse",
50+
"--header",
51+
"Authorization: Bearer <YOUR_WEBFLOW_TOKEN>"
52+
]
4753
}
4854
}
4955
}
@@ -136,7 +142,7 @@ collections - items - update - items - live; // Update items
136142

137143
# 🗣️ Prompts & Resources
138144

139-
This implementation **does not** include prompts and resources. However, this may change in the future.
145+
This implementation **does not** include `prompts` or `resources` from the MCP specification. However, this may change in the future when there is broader support across popular MCP clients.
140146

141147
# 🚧 Development mode
142148

@@ -150,7 +156,7 @@ cd mcp-server
150156
npm install
151157
```
152158

153-
2. Add your token:
159+
2. Add your token to a `.env` file at the root of the project:
154160

155161
```shell
156162
# .env

0 commit comments

Comments
 (0)