ultimate_mcp_server vs us-gov-open-data-mcp
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | us-gov-open-data-mcp by lzinga | |
|---|---|---|
| Stars | ★ 149 | ★ 98 |
| 30d uses | — | — |
| Score | 85 | 48 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | FinanceProductivityAI / LLM Tools |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | 1 mo ago |
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.
us-gov-open-data-mcp · Summary
MCP server with 300+ tools for 40+ US government APIs including Treasury, FRED, Congress, FDA, CDC, and FEC.
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
us-gov-open-data-mcp · Use cases
- Analyze economic indicators including GDP, unemployment, inflation, and interest rates
- Investigate healthcare data by combining FDA adverse events, clinical trials, and pharma payments
- Track legislative activities including bill sponsorship, voting patterns, and campaign contributions
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_serverus-gov-open-data-mcp · Install
npx us-gov-open-data-mcpAdd to .vscode/mcp.json for VS Code / Copilot:
{
"servers": {
"us-gov-open-data": {
"command": "npx",
"args": ["-y", "us-gov-open-data-mcp"],
"env": {
"FRED_API_KEY": "your_key",
"DATA_GOV_API_KEY": "your_key"
}
}
}
}Add to claude_desktop_config.json for Claude Desktop:
{
"mcpServers": {
"us-gov-open-data": {
"command": "npx",
"args": ["-y", "us-gov-open-data-mcp"],
"env": {
"FRED_API_KEY": "your_key",
"DATA_GOV_API_KEY": "your_key"
}
}
}
}