everything vs mcp-server
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | mcp-server by webflow | |
|---|---|---|
| Stars | ★ 85,748 | ★ 131 |
| 30天用量 | — | — |
| 综合分 | 77 | 48 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 电商开发者工具AI / LLM 工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 1 个月前 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
mcp-server · 概述
Webflow MCP 服务器通过模型上下文协议让 AI 代理能够与 Webflow API 交互。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
mcp-server · 使用场景
- 分析博客文章并推荐 SEO 优化的内容主题
- 自动在相关内容之间添加内部链接
- 创建带有行动号召按钮的响应式设计元素,如主页英雄区域
everything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingmcp-server · 安装
远程安装(推荐)
- 添加到 Claude Desktop 配置文件 (
claude_desktop_config.json):
{
"mcpServers": {
"webflow": {
"command": "npx",
"args": ["mcp-remote", "https://mcp.webflow.com/sse"]
}
}
}- 或添加到 Cursor 配置文件 (
.cursor/mcp.json):
{
"mcpServers": {
"webflow": {
"url": "https://mcp.webflow.com/sse"
}
}
}- 在 Webflow Designer 中打开您的站点,并从应用面板启动 MCP Bridge App
本地安装
- 在您的工作区创建并发布 Webflow MCP Bridge App
- 获取您的 Webflow API 令牌
- 添加到客户端配置并设置环境变量:
{
"mcpServers": {
"webflow": {
"command": "npx",
"args": ["-y", "webflow-mcp-server@latest"],
"env": {
"WEBFLOW_TOKEN": "<YOUR_WEBFLOW_TOKEN>"
}
}
}
}