MCP Catalogs
Home

everything vs mcp

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

everything
by modelcontextprotocol
mcp
by yandex-cloud
Stars★ 85,748★ 30
30d uses
Score7744
Official
Categories
Developer ToolsAI / LLM ToolsOther
Ops & InfraDeveloper ToolsCloud Storage
LanguageTypeScript
Last committhis month1 mo ago

everything · Summary

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

mcp · Summary

A collection of MCP servers for managing Yandex Cloud infrastructure including deployment, serverless, and data platform services.

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

  • Managing Yandex Cloud infrastructure through conversational AI interfaces
  • Automating cloud deployments and configurations using AI assistants
  • Searching and accessing Yandex Cloud documentation and web resources
  • Developing and deploying serverless applications with AI guidance

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

Installation

Choose one of the following authentication methods:

NPM Client (Stdio)

  1. Install Node.js 18.0.0 or higher
  2. Install Yandex Cloud CLI (optional, for CLI authentication)
  3. Configure your MCP client (e.g. Claude Desktop):
{
  "mcpServers": {
    "yandex-cloud-toolkit": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y", "@yandex-cloud/mcp",
        "-s", "toolkit"
      ]
    }
  }
}

Streamable HTTP

  1. Get an IAM token using Yandex Cloud CLI:

- yc iam create-token for user account - yc iam create-token --impersonate-service-account-id <service-account-id> for service account

  1. Configure your MCP client:
{
  "mcpServers": {
    "yandex-cloud-toolkit": {
      "type": "streamableHttp",
      "url": "https://toolkit.mcp.cloud.yandex.net/mcp",
      "headers": {
        "Authorization": "Bearer <YC IAM Token>"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.