ultimate_mcp_server vs rustchain-mcp
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | rustchain-mcp by Scottcjn | |
|---|---|---|
| Stars | ★ 149 | ★ 65 |
| 30d uses | — | — |
| Score | 85 | 48 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | AI / LLM ToolsFinanceCommunication |
| Language | Python | Python |
| Last commit | 2 mo ago | this month |
ultimate_mcp_server · Summary
Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.
rustchain-mcp · Summary
MCP server connecting AI agents to RustChain blockchain, BoTTube video platform, and Beacon messaging.
ultimate_mcp_server · Use cases
- Complex document processing and analysis with OCR and structured data extraction
- Web automation and research across multiple sites with browser control
- Cost-optimized AI workflows through intelligent task delegation between models
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
ultimate_mcp_server · Install
Installation
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_serverrustchain-mcp · Install
pip install rustchain-mcpFor 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()