🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

regulations-mcp

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

regulations-mcp

MCP server for live U.S. federal regulations — Federal Register, eCFR, and Regulations.gov

pipPyPI
Version
0.1.0
Weekly downloads
61
Maintainers
1

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

ToolSourceAuth needed
Search Federal Register documentsfederalregister.govNone
Get a specific FR documentfederalregister.govNone
List open public comment periodsfederalregister.govNone
Get pre-publication inspection documentsfederalregister.govNone
List all 50 CFR titlesecfr.govNone
Full-text search the CFRecfr.govNone
Read a specific CFR sectionecfr.govNone
Browse CFR title structureecfr.govNone
Search regulatory docketsregulations.govFree API key
Search regulations.gov documentsregulations.govFree API key

Quick start

pip install regulations-mcp
cp .env.example .env   # add your LLM key

Interactive chat

# Claude (default)
regs chat

# GPT-4o
regs chat --provider gpt4o

# Gemini 1.5 Pro
regs chat --provider gemini

# Llama 3 via Groq (free tier)
regs chat --provider groq-llama

# Local Ollama
regs chat --provider ollama-llama3

# Any litellm model string
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:

# What changed in 21 CFR § 11.1 between 2020 and 2024?
regs diff 21 11 1 2020-01-01 2024-01-01

# With LLM summary of the regulatory impact
regs diff 21 11 1 2020-01-01 2024-01-01 --llm

# Use a different LLM for the summary
regs diff 40 122 1 2018-01-01 2024-01-01 --llm --provider gpt4o

# Show full text of both versions side by side
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

# Bump version in pyproject.toml and __init__.py, then:
git tag v0.2.0 && git push origin v0.2.0

# Create a GitHub release — the publish workflow auto-uploads to PyPI
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

Keywords

ai

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts