congressMCP vs ultimate_mcp_server
Side-by-side comparison to help you pick between these two MCP servers.
congressMCP by amurshak | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 30 | ★ 149 |
| 30d uses | — | — |
| Score | 45 | 85 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsOther | AI / LLM ToolsBrowser AutomationFile System |
| Language | Python | Python |
| Last commit | 2 mo ago | 2 mo ago |
congressMCP · Summary
MCP server providing 91+ tools for accessing live U.S. Congressional data through Congress.gov API.
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.
congressMCP · Use cases
- Tracking legislative activity on specific issues like climate change
- Analyzing voting patterns of representatives from specific states
- Monitoring committee composition and related legislation
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
congressMCP · Install
- Get a free Congress.gov API key from [api.congress.gov/sign-up](https://api.congress.gov/sign-up/)
- Install the package:
pip install congressmcp- Configure your MCP client (example for Claude Desktop):
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"congressmcp": {
"command": "uvx",
"args": ["congressmcp"],
"env": {
"CONGRESS_API_KEY": "your-api-key-here"
}
}
}
}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_server