everything vs mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | mcp-server by webflow | |
|---|---|---|
| Stars | ★ 85,748 | ★ 131 |
| 30d uses | — | — |
| Score | 77 | 48 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | E-commerceDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 1 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-server · Summary
Webflow MCP server enables AI agents to interact with Webflow APIs through Model Context Protocol.
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
mcp-server · Use cases
- Analyze blog posts and suggest SEO-optimized content topics
- Automatically add internal links between related content
- Create responsive design elements like hero sections with CTAs
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingmcp-server · Install
Remote Installation (Recommended)
- Add to Claude Desktop config (
claude_desktop_config.json):
{
"mcpServers": {
"webflow": {
"command": "npx",
"args": ["mcp-remote", "https://mcp.webflow.com/sse"]
}
}
}- Or add to Cursor config (
.cursor/mcp.json):
{
"mcpServers": {
"webflow": {
"url": "https://mcp.webflow.com/sse"
}
}
}- Open your site in Webflow Designer and launch the MCP Bridge App from the Apps panel
Local Installation
- Create and publish a Webflow MCP Bridge App in your workspace
- Get your Webflow API token
- Add to client config with environment variable:
{
"mcpServers": {
"webflow": {
"command": "npx",
"args": ["-y", "webflow-mcp-server@latest"],
"env": {
"WEBFLOW_TOKEN": "<YOUR_WEBFLOW_TOKEN>"
}
}
}
}