MCP Catalogs
Home

google-cloud-mcp vs sequentialthinking

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

google-cloud-mcp
by krzko
sequentialthinking
by modelcontextprotocol
Stars★ 78★ 85,748
30d uses
Score4575
Official
Categories
Cloud StorageDeveloper ToolsOps & Infra
AI / LLM ToolsDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last commit5 mo agothis month

google-cloud-mcp · Summary

A comprehensive MCP server providing access to multiple Google Cloud services including billing, monitoring, IAM, Spanner, and more.

sequentialthinking · Summary

Sequential Thinking MCP Server enables dynamic problem-solving through step-by-step reasoning.

google-cloud-mcp · Use cases

  • DevOps engineers monitoring cloud infrastructure costs and performance
  • Developers debugging applications using error reporting and logs
  • Security teams auditing IAM permissions and access controls

sequentialthinking · Use cases

  • Planning complex system migrations with risk assessment
  • Debugging production issues requiring step-by-step analysis
  • Comparing architecture options with conditional branching

google-cloud-mcp · Install

# Clone and install the repository
git clone https://github.com/krzko/google-cloud-mcp.git
cd google-cloud-mcp
pnpm install
pnpm build

# Authenticate to Google Cloud
gcloud auth application-default login

# Configure in Claude Desktop
{
  "mcpServers": {
    "google-cloud-mcp": {
      "command": "node",
      "args": ["/path/to/google-cloud-mcp/dist/index.js"],
      "env": {
        "GOOGLE_APPLICATION_CREDENTIALS": "/path/to/credentials.json"
      }
    }
  }
}

sequentialthinking · Install

Installation

**Claude Desktop**: Add this to your claude_desktop_config.json:

{
  "mcpServers": {
    "sequential-thinking": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-sequential-thinking"
      ]
    }
  }
}

**VS Code**: Use one of the installation buttons or manually configure with:

{
  "servers": {
    "sequential-thinking": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-sequential-thinking"
      ]
    }
  }
}

**Docker**:

{
  "mcpServers": {
    "sequentialthinking": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "mcp/sequentialthinking"
      ]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.