regulations-mcp
An MCP server that gives AI assistants live access to U.S. federal regulations — Federal Register, Code of Federal Regulations (eCFR), and Regulations.gov.
Works with any LLM via the built-in regs CLI (Claude, GPT-4o, Gemini, Mistral, Llama via Groq/Ollama, Cohere, and more).
What it can do
| Search Federal Register documents | federalregister.gov | None |
| Get a specific FR document | federalregister.gov | None |
| List open public comment periods | federalregister.gov | None |
| Get pre-publication inspection documents | federalregister.gov | None |
| List all 50 CFR titles | ecfr.gov | None |
| Full-text search the CFR | ecfr.gov | None |
| Read a specific CFR section | ecfr.gov | None |
| Browse CFR title structure | ecfr.gov | None |
| Search regulatory dockets | regulations.gov | Free API key |
| Search regulations.gov documents | regulations.gov | Free API key |
Quick start
pip install regulations-mcp
cp .env.example .env
Interactive chat
regs chat
regs chat --provider gpt4o
regs chat --provider gemini
regs chat --provider groq-llama
regs chat --provider ollama-llama3
regs chat --provider "bedrock/anthropic.claude-3-5-sonnet-20241022-v2:0"
One-shot questions
regs ask "What EPA rules have open comment periods right now?"
regs ask "What does 21 CFR Part 11 say about electronic signatures?" --provider gpt4o
regs ask "Find all OSHA rules published in the last 30 days" --provider gemini-flash
regs ask "Summarize the most recent FDA food safety final rules" --provider groq-llama
List all providers
regs providers
Use as an MCP server (Claude Desktop / any MCP client)
Add to your MCP client config:
{
"mcpServers": {
"regulations": {
"command": "regulations-mcp",
"env": {
"REGULATIONS_GOV_API_KEY": "your_key_here"
}
}
}
}
Claude Desktop config location:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
- Windows:
%APPDATA%\Claude\claude_desktop_config.json
Diff CFR sections across dates
Compare exactly what regulatory text changed between any two dates:
regs diff 21 11 1 2020-01-01 2024-01-01
regs diff 21 11 1 2020-01-01 2024-01-01 --llm
regs diff 40 122 1 2018-01-01 2024-01-01 --llm --provider gpt4o
regs diff 29 1910 95 2015-01-01 2024-01-01 --full
The diff_cfr_section tool is also available in the MCP server — AI assistants can call it directly to answer questions like "what exactly changed in this regulation and when?"
Example questions
What EPA rules are currently open for public comment?
Summarize 21 CFR Part 11 (FDA electronic records requirements)
What changed in Title 40 (EPA) in the last 6 months?
Find all proposed rules about AI or machine learning
What are the OSHA requirements for workplace noise exposure? (29 CFR 1910.95)
Which agencies published final rules this week?
Show me documents currently on public inspection before they're published
Publishing a release
git tag v0.2.0 && git push origin v0.2.0
gh release create v0.2.0 --generate-notes
Dry-run to TestPyPI first via Actions → Publish → Run workflow → dry_run=true.
Development
git clone https://github.com/stark256-spec/regulations-mcp
cd regulations-mcp
pip install -e ".[dev]"
pytest tests/ -v
Data sources
All free, public U.S. government APIs — no scraping, no unofficial endpoints:
License
MIT