MCP Catalogs
Home

goldrush-mcp-server vs everything

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

goldrush-mcp-server
by covalenthq
everything
by modelcontextprotocol
Stars★ 14★ 85,748
30d uses
Score4277
Official
Categories
FinanceblockchainDeveloper Tools
Developer ToolsAI / LLM ToolsOther
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.

everything · Summary

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

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

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

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"
            }
        }
    }
}

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.