
CongressMCP-full
The open Congress.gov MCP server. Provides comprehensive access to the Congress.gov API through 6 organized toolsets, enabling AI systems to retrieve and interact with legislative data from the United States Congress with a clean, unified interface.
README
Congress.gov API MCP Server
🎉 Production Ready - Complete Legislative Data Access via 6 Toolsets
This Model Context Protocol (MCP) server provides comprehensive access to the Congress.gov API through 6 organized toolsets, enabling AI systems to retrieve and interact with legislative data from the United States Congress with a clean, unified interface.
🎯 Complete Access: 6 Toolsets • 92 Operations • All Functions Available
🚀 Quick Start
1. Get Your API Key
Visit congressmcp.lawgiver.ai to register and get your API key.
2. Install via NPM (Recommended)
npm install -g congressmcp
3. Configure Your MCP Client
Add this to your MCP client configuration (e.g., Claude Desktop):
{
"mcpServers": {
"congressional-mcp": {
"command": "npx",
"args": ["-y", "congressmcp"],
"env": {
"CONGRESSMCP_API_KEY": "your-api-key-here"
}
}
}
}
4. Restart Your MCP Client
You'll now have access to 6 organized toolsets covering 92 congressional operations!
🗂️ Toolset Architecture (v1.6.0)
🎯 Major Achievement: 87+ Tools → 6 Organized Toolsets
We've successfully consolidated 87+ individual tools into 6 logical, organized toolsets for a dramatically improved user experience. All operations are now available to all users, with rate limiting based on tier:
1. 📋 Legislation Hub (legislation_hub
)
Consolidates: Bills, Amendments, Summaries, Treaties
Operations: 24 total (all available)
- Bills: Search, details, text, actions, amendments, cosponsors, subjects
- Amendments: Search, details, actions, sponsors
- Summaries: Bill summaries with keyword search
- Treaties: Search, actions, committees, text
2. 👥 Members and Committees (members_and_committees
)
Consolidates: Congressional Members, Committees, Committee Operations
Operations: 13 total (all available)
- Members: Search, details, sponsored/cosponsored legislation
- Committees: Search, bills, reports, communications, nominations
3. 🗳️ Voting and Nominations (voting_and_nominations
)
Consolidates: House Votes, Nominations
Operations: 14 total (all available)
- House Votes: By Congress/session, details, member votes, XML data
- Nominations: Search, details, actions, committees, hearings
4. 📰 Records and Hearings (records_and_hearings
)
Consolidates: Congressional Records, Communications, Hearings
Operations: 16 total (all available)
- Congressional Records: Daily/bound records, search functionality
- Communications: House/Senate communications, requirements
- Hearings: Search, details, content by Congress/chamber
5. 📊 Committee Intelligence (committee_intelligence
)
Consolidates: Committee Reports, Prints, Meetings
Operations: 19 total (all available)
- Committee Reports: Latest, by Congress/type, details, content
- Committee Prints: Latest, by Congress/chamber, details
- Committee Meetings: Latest, by Congress/chamber/committee, search
6. 🔬 Research and Professional (research_and_professional
)
Consolidates: Congress Information, CRS Reports
Operations: 6 total (all available)
- Congress Info: Basic and enhanced Congress information
- CRS Reports: Congressional Research Service report search
- Professional Analytics: Enhanced research capabilities
🏗️ Architecture Overview
Toolset Design
Each toolset accepts an operation
parameter to route to specific functionality:
# Example usage
await legislation_hub(
operation="search_bills",
keywords="climate change",
congress=118,
limit=10
)
await members_and_committees(
operation="search_members",
name="Smith",
state="CA"
)
Access Control
- Universal Access: All operations available to all users
- Rate Limiting: Free tier gets 200 calls/month, Pro tier gets 5000 calls/month
- Usage Tracking: Clear monitoring of API call usage and limits
API Reliability Framework
- Parameter Validation: Comprehensive input validation for all operations
- Defensive API Calls: Retry logic and timeout handling for external requests
- Response Processing: Standardized deduplication and error handling
- Enhanced Error Messages: User-friendly error responses with operation guidance
📁 Project Structure
CongressMCP/
├── congress_api/
│ ├── core/ # Core infrastructure
│ │ ├── auth.py # Authentication & authorization
│ │ ├── config.py # Configuration management
│ │ ├── database.py # Database connections
│ │ └── middleware.py # ASGI middleware
│ ├── features/ # Feature implementations
│ │ ├── buckets/ # 🆕 Toolset implementations
│ │ │ ├── legislation_hub.py
│ │ │ ├── members_and_committees.py
│ │ │ ├── voting_and_nominations.py
│ │ │ ├── records_and_hearings.py
│ │ │ ├── committee_intelligence.py
│ │ │ └── research_and_professional.py
│ │ ├── bills.py # Internal bill functions
│ │ ├── members.py # Internal member functions
│ │ ├── committees.py # Internal committee functions
│ │ └── [other features] # Internal feature functions
│ ├── reliability/ # API reliability framework
│ │ ├── validators.py # Parameter validation
│ │ ├── api_wrapper.py # Defensive API calls
│ │ ├── exceptions.py # Error handling
│ │ └── response_utils.py # Response processing
│ └── utils/ # Utility functions
├── tests/ # Comprehensive test suite
├── documentation/ # Technical documentation
├── requirements.txt # Python dependencies
├── Procfile # Heroku deployment
└── README.md # This file
🚀 Deployment
Production Deployment
The server is deployed at api-cmcp.lawgiver.ai
with:
- SSL/TLS encryption
- Automatic scaling
- Environment-based configuration
- Health monitoring
Local Development
-
Clone the repository:
git clone <repository-url> cd CongressMCP
-
Set up environment:
cp .env.example .env # Edit .env with your configuration
-
Install dependencies:
pip install -r requirements.txt
-
Run the server:
python run_server.py
Environment Configuration
Core Configuration:
CONGRESS_API_KEY
: Your Congress.gov API key (required)ENABLE_AUTH
: Enable authentication (default: true)ENABLE_DATABASE
: Enable database features (default: true)ENABLE_STRIPE
: Enable payment integration (default: true)
Authentication:
LAWGIVER_JWT_SECRET
: JWT secret for authenticationLAWGIVER_API_KEYS
: API keys for user authentication (format: tier:user:key)ADMIN_API_KEY
: Admin API key for key managementENABLE_KEY_MANAGEMENT
: Enable admin key management (default: false)
Database (Supabase):
SUPABASE_URL
: Supabase project URLSUPABASE_ANON_KEY
: Supabase anonymous keySUPABASE_SERVICE_KEY
: Supabase service role key
Payment Processing (Stripe):
STRIPE_SECRET_KEY
: Stripe secret keySTRIPE_WEBHOOK_SECRET
: Stripe webhook secretSTRIPE_PRICE_PRO_MONTHLY
: Stripe price ID for Pro monthlySTRIPE_PRICE_PRO_ANNUAL
: Stripe price ID for Pro annual
Email Service (Resend):
RESEND_API_KEY
: Resend API keyRESEND_FROM_EMAIL
: From email addressFRONTEND_BASE_URL
: Frontend URL for magic linksMAGIC_LINK_EXPIRY_MINUTES
: Magic link expiry time (default: 60)
See .env.example
for complete configuration with examples.
🧪 Testing
Run Tests
# Run all tests
pytest
# Run specific toolset tests
pytest tests/test_legislation_hub_toolset.py
pytest tests/test_members_committees_toolset.py
# Run with coverage
pytest --cov=congress_api
Test Coverage
- Toolset Operations: Operation routing and validation tests for each of the 6 toolsets
- Core Features: Selected tests for key functionality (amendments, email system)
- Authentication: User registration, email templates, and API key validation tests
- Integration: Basic endpoint testing with real API responses
📚 Documentation
Repository Documentation
- API_RELIABILITY_GUIDE.md: Comprehensive reliability framework documentation
- TOOL_CONSOLIDATION_PLAN.md: Bucket architecture implementation details
External Documentation
- GitHub Issues: Bug reports and feature requests
- Website: congressmcp.lawgiver.ai for setup guides and API documentation
🔧 Development
Adding New Operations
- Implement internal function in appropriate feature file
- Add operation to toolset in relevant toolset tool
- Update operation sets (add to FREE_OPERATIONS and ALL_OPERATIONS)
- Add comprehensive tests for the new operation
- Update documentation with operation details
Toolset Pattern
@mcp.tool("toolset_name")
async def toolset_tool(ctx: Context, operation: str, **kwargs) -> str:
# Validate operation exists
if operation not in ALL_OPERATIONS:
raise ValueError(f"Unknown operation: {operation}")
# Rate limiting check (all operations available)
await check_rate_limit(ctx)
# Route to internal function
if operation == "example_operation":
return await _example_operation(ctx, **kwargs)
# Handle routing
return await route_operation(operation, ctx, **kwargs)
🎯 Key Benefits
For Users
- Simplified Discovery: 6 logical toolsets instead of 87+ scattered tools
- Universal Access: All 92 operations available regardless of tier
- Consistent Interface: Unified parameter handling across all operations
- Clear Documentation: Detailed operation descriptions and examples
- Reliable Performance: Comprehensive error handling and retry logic
For Developers
- Easier Maintenance: Centralized logic and consistent patterns
- Better Testing: Focused test suites per toolset
- Reduced Complexity: Eliminated 87 individual tool registrations
- Improved Organization: Clear separation between interfaces and implementations
- Open Source Ready: Easy configuration for self-hosting without commercial features
📊 Version History
v1.6.0 - Universal Free Access
- Major Achievement: All 92 operations now available to free users
- Simplified Tiers: Rate limiting (200/5000 calls) instead of function restrictions
- Open Source Ready: Architecture supports easy deployment without commercial features
- Enhanced UX: Simplified tool discovery and universal access
v1.5.0 - Toolset Architecture Complete
- Major Achievement: Consolidated 87+ tools into 6 organized toolsets
- Enhanced UX: Simplified tool discovery and consistent interfaces
- Access Control: Operation-level tier management within toolsets
- API Reliability: Full reliability framework integration
Previous Versions
See CHANGELOG.md for complete version history.
🤝 Contributing
- Fork the repository
- Create a feature branch
- Implement changes with tests
- Update documentation
- Submit a pull request
📄 License
This project is licensed under the MIT License - see the LICENSE file for details.
🆘 Support
- Issues: GitHub Issues
- Email: support@lawgiver.ai
- Website: congressmcp.lawgiver.ai
推荐服务器

Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。