MCP Catalogs
Home

everything vs mcp

Side-by-side comparison to help you pick between these two MCP servers.

everything
by modelcontextprotocol
mcp
by mondaycom
Stars★ 85,748★ 403
30d uses
Score7752
Official
Categories
Developer ToolsAI / LLM ToolsOther
ProductivityDeveloper ToolsAI / LLM Tools
LanguageTypeScriptTypeScript
Last committhis monththis month

everything · Summary

Official MCP test server exercising all protocol features for client builders.

mcp · Summary

monday.com MCP server provides secure API access to monday.com's work OS for AI agents.

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 · Use cases

  • AI assistants create and manage project boards in monday.com
  • Automate status updates and task movements between board groups
  • Generate custom reports and dashboards from monday.com data

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 · Install

Quick Setup with Hosted MCP

For Claude Desktop, add this to your MCP settings:

{
  "mcpServers": {
    "monday-mcp": {
      "url": "https://mcp.monday.com/mcp"
    }
  }
}

Local Installation

For Claude Desktop, configure with:

{
  "mcpServers": {
    "monday-api-mcp": {
      "command": "npx",
      "args": [
        "@mondaydotcomorg/monday-api-mcp@latest"
      ],
      "env": {
        "MONDAY_TOKEN": "your_monday_api_token"
      }
    }
  }
}

Get your API token from monday.com → Developers → My access tokens.

Comparison generated from public README + GitHub signals. Last updated automatically.