MCP Catalogs
Home

goldrush-mcp-server vs sequentialthinking

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

goldrush-mcp-server
by covalenthq
sequentialthinking
by modelcontextprotocol
Stars★ 14★ 85,748
30d uses
Score4275
Official
Categories
FinanceblockchainDeveloper Tools
AI / LLM ToolsDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last commit3 mo agothis month

goldrush-mcp-server · Summary

MCP server exposing Covalent's GoldRush blockchain APIs as tools and resources for LLM clients.

sequentialthinking · Summary

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

goldrush-mcp-server · Use cases

  • Enable LLMs to access blockchain data and analytics through natural language
  • Provide blockchain information retrieval for AI-powered financial advisors
  • Support developers building blockchain-aware applications with MCP integration

sequentialthinking · Use cases

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

goldrush-mcp-server · Install

Installation

npm install -g @covalenthq/goldrush-mcp-server

Claude Desktop Configuration

Add this to your claude_desktop_config.json:

{
    "mcpServers": {
        "goldrush": {
            "command": "npx",
            "args": ["-y", "@covalenthq/goldrush-mcp-server@latest"],
            "env": {
                "GOLDRUSH_API_KEY": "YOUR_API_KEY_HERE"
            }
        }
    }
}

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.