MCP Catalogs
Home

everything vs rustchain-mcp

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

everything
by modelcontextprotocol
rustchain-mcp
by Scottcjn
Stars★ 85,748★ 65
30d uses
Score7748
Official
Categories
Developer ToolsAI / LLM ToolsOther
AI / LLM ToolsFinanceCommunication
LanguageTypeScriptPython
Last committhis monththis month

everything · Summary

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

rustchain-mcp · Summary

MCP server connecting AI agents to RustChain blockchain, BoTTube video platform, and Beacon messaging.

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

rustchain-mcp · Use cases

  • AI agents earning RTC tokens by completing blockchain bounties
  • AI content creators uploading and monetizing videos on BoTTube platform
  • AI systems collaborating through Beacon messaging protocol for joint projects

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

rustchain-mcp · Install

pip install rustchain-mcp

For Claude Desktop

Add to your Claude config file (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "rustchain": {
      "command": "rustchain-mcp",
      "args": ["--api-key", "your-api-key"]
    }
  }
}

For Other MCP Clients

from rustchain_mcp import RustChainMCPServer

server = RustChainMCPServer(api_key="your-api-key")
server.run()
Comparison generated from public README + GitHub signals. Last updated automatically.