MCP Catalogs
Home

cloud-run-mcp vs everything

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

cloud-run-mcp
by GoogleCloudPlatform
everything
by modelcontextprotocol
Stars★ 608★ 85,748
30d uses
Score5377
Official
Categories
Ops & InfraDeveloper ToolsAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageJavaScriptTypeScript
Last committhis monththis month

cloud-run-mcp · Summary

MCP server that enables AI agents to deploy applications to Google Cloud Run with comprehensive tool support and authentication options.

everything · Summary

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

cloud-run-mcp · Use cases

  • AI-assisted development environments deploying code directly to Cloud Run
  • Automated CI/CD pipelines using AI agents to manage Cloud Run services
  • Chat-based interfaces managing Google Cloud infrastructure through natural language

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

cloud-run-mcp · Install

Installation

Quick Start (Node.js)

"mcpServers": {
  "cloud-run": {
    "command": "npx",
    "args": ["-y", "@google-cloud/cloud-run-mcp"]
  }
}

With Claude Desktop

Add to your Claude Desktop config file (claude_desktop_config.json):

{
  "mcpServers": {
    "cloud-run": {
      "command": "npx",
      "args": ["-y", "@google-cloud/cloud-run-mcp"],
      "env": {
        "GOOGLE_CLOUD_PROJECT": "your-project-id",
        "GOOGLE_CLOUD_REGION": "your-region",
        "DEFAULT_SERVICE_NAME": "your-service-name"
      }
    }
  }
}

Using Docker

{
  "mcpServers": {
    "cloud-run": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "-e", "GOOGLE_APPLICATION_CREDENTIALS",
        "-v", "/local/path:/local/path",
        "mcp/cloud-run-mcp:latest"
      ],
      "env": {
        "GOOGLE_APPLICATION_CREDENTIALS": "/path/to/credentials.json"
      }
    }
  }
}

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
Comparison generated from public README + GitHub signals. Last updated automatically.