MCP Catalogs
Home

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
Score7748
Official
Categories
Developer ToolsAI / LLM ToolsOther
E-commerceDeveloper ToolsAI / LLM Tools
LanguageTypeScriptTypeScript
Last committhis month1 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-everything

mcp-server · Install

Remote Installation (Recommended)

  1. Add to Claude Desktop config (claude_desktop_config.json):
{
  "mcpServers": {
    "webflow": {
      "command": "npx",
      "args": ["mcp-remote", "https://mcp.webflow.com/sse"]
    }
  }
}
  1. Or add to Cursor config (.cursor/mcp.json):
{
  "mcpServers": {
    "webflow": {
      "url": "https://mcp.webflow.com/sse"
    }
  }
}
  1. Open your site in Webflow Designer and launch the MCP Bridge App from the Apps panel

Local Installation

  1. Create and publish a Webflow MCP Bridge App in your workspace
  2. Get your Webflow API token
  3. Add to client config with environment variable:
{
  "mcpServers": {
    "webflow": {
      "command": "npx",
      "args": ["-y", "webflow-mcp-server@latest"],
      "env": {
        "WEBFLOW_TOKEN": "<YOUR_WEBFLOW_TOKEN>"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.