Skip to main content
ClaudeWave

MCP server for US law - Congress.gov bills, GovInfo (US Code/CFR/Federal Register), Federal Register (1M docs), CourtListener (8.3M court opinions incl. all 50 states), eCFR. Verifiable citations, keyless-first. Apache-2.0.

MCP ServersOfficial Registry1 stars0 forksPythonApache-2.0Updated today
ClaudeWave Trust Score
95/100
Verified
Passed
  • Open-source license (Apache-2.0)
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Documented (README)
Last scanned: 8/25/2026
Install in Claude Code / Claude Desktop
Method: pip / Python · us-eli-mcp
Claude Code CLI
claude mcp add us-eli-mcp -- python -m us-eli-mcp
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "us-eli-mcp": {
      "command": "python",
      "args": ["-m", "pip"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
💡 Install first: pip install us-eli-mcp
Use cases

MCP Servers overview

# us-eli-mcp

<!-- mcp-name: io.github.matematicsolutions/us-eli-mcp -->

MCP server for US law with verifiable citations. Five sources behind ten
read-only tools:

- **Congress.gov API** - the federal legislative *process*: bills as they move
  through committees and floor votes.
- **GovInfo API** - enacted law text as published packages: US Code, Statutes
  at Large, CFR annual editions, Federal Register issues.
- **Federal Register API** - full-text search over 1,003,504 FR documents
  (1994-2026, live-verified 2026-07-07), including 8,513 presidential
  documents (1,550 executive orders). Keyless.
- **CourtListener search API** - full-text search over 8,294,123 court
  opinions (live-verified 2026-07-07). The headline value is STATE case law
  (California, New York, Texas, ...), which no federal source covers. Keyless,
  ~5 requests/min anonymous.
- **eCFR API** - the CURRENT Code of Federal Regulations: section-level
  full-text search over 412,846 sections plus per-section amendment history.
  Keyless.

## What this is not

- **State legislation** (all 50 states) - see [LegiScan](https://legiscan.com/legiscan),
  a free-tier aggregator (30,000 queries/month) not wrapped here.
- **A federal case-law workhorse** - for heavy federal case-law research the
  mature MIT-licensed wrappers
  ([blakeox/courtlistener-mcp](https://github.com/blakeox/courtlistener-mcp),
  john-walkoe/courtlistener_citations_mcp) remain the recommendation; the
  case-law tools here exist primarily for state courts. See SOURCES.md.

## Tools

| Tool | Purpose |
|---|---|
| `us_search_bills` | List bills by congress (e.g. `118`) and type (`hr`, `s`, `hres`, ...) |
| `us_get_bill` | Full detail + latest action for one bill |
| `us_list_code_packages` | List GovInfo packages in a collection (`USCODE`, `CFR`, `FR`, `STATUTE`) |
| `us_get_code_package` | Metadata + download links (PDF/XML/TXT) for one package |
| `us_search_federal_register` | Full-text search over FR documents; filter rules, notices, executive orders |
| `us_get_federal_register_doc` | One FR document with its official citation (e.g. `91 FR 41591`) |
| `us_search_case_law` | Full-text search over 8M+ opinions; `court` filter (e.g. `cal`, `ny`, `scotus`) |
| `us_get_case` | One opinion cluster by `cluster_id` |
| `us_search_cfr_sections` | Full-text search over the current CFR (eCFR) |
| `us_get_cfr_section_history` | Amendment history of one CFR section (e.g. 15 CFR 744.3) |
| `us_coverage` | Declare what this connector covers, when each family was captured, and - explicitly - what it does NOT cover. Every gap carries a fallback. |

Every response carries `lex_uri` (a resolvable API URL), `human_readable_citation`
(the official convention: `"H.R. 1, 118th Congress"`, `"91 FR 41591"`,
`"People v. Miranda-Guerrero, 519 P.3d 1004 (California Supreme Court 2022)"`,
`"15 CFR § 744.3"`) and `source_url` (the public page). Reporter citations are
taken verbatim from the source and never fabricated; when none exists the
docket number is used instead.

## Install

```bash
pip install us-eli-mcp
```


### Windows 11 with Smart App Control

Smart App Control blocks unsigned executables, which covers `uvx.exe`, `pip.exe`
and the `us-eli-mcp.exe` launcher that pip writes at install time. The `python.exe` and
`py.exe` from the python.org installer are signed by the Python Software
Foundation, so running the module through the interpreter works:

```bash
python -m pip install us-eli-mcp
python -m us_eli_mcp
```

`pip.exe` is blocked for the same reason, so install with `python -m pip`, not
`pip install`. If `python` is not on PATH, use the Windows launcher: `py -3 -m us_eli_mcp`.

```json
{ "mcpServers": { "us-eli-mcp": { "command": "python", "args": ["-m", "us_eli_mcp"] } } }
```

Do not turn Smart App Control off to work around this - it cannot be re-enabled
without reinstalling Windows.

## Configuration

| Env var | Default |
|---|---|
| `US_ELI_API_KEY` | `DEMO_KEY` (shared, low rate limit - get your own free key at [api.congress.gov/sign-up](https://api.congress.gov/sign-up/)) |
| `US_ELI_GOVINFO_API_KEY` | reuses `US_ELI_API_KEY` (same api.data.gov key family) |
| `US_ELI_CACHE_DIR` | `~/.matematic/cache/us-eli` |
| `US_ELI_AUDIT_DIR` | `~/.matematic/audit` |
| `US_ELI_BASE_URL` | `https://api.congress.gov/v3` |
| `US_ELI_GOVINFO_BASE_URL` | `https://api.govinfo.gov` |
| `US_ELI_FR_BASE_URL` | `https://www.federalregister.gov/api/v1` (keyless) |
| `US_ELI_COURTLISTENER_BASE_URL` | `https://www.courtlistener.com/api/rest/v4` (keyless) |
| `US_ELI_ECFR_BASE_URL` | `https://www.ecfr.gov/api` (keyless) |

The Federal Register, CourtListener and eCFR tools need no key at all.

## License

Apache-2.0 (code). Congress.gov, GovInfo, Federal Register and eCFR data are
US government works (public domain). CourtListener data is provided by the
Free Law Project.
ai-agentlegallegaltechlegislationmcpmcp-servermodel-context-protocolusa

What people ask about us-eli-mcp

What is matematicsolutions/us-eli-mcp?

+

matematicsolutions/us-eli-mcp is mcp servers for the Claude AI ecosystem. MCP server for US law - Congress.gov bills, GovInfo (US Code/CFR/Federal Register), Federal Register (1M docs), CourtListener (8.3M court opinions incl. all 50 states), eCFR. Verifiable citations, keyless-first. Apache-2.0. It has 1 GitHub stars and its last recorded update is dated 2026-08-24.

How do I install us-eli-mcp?

+

You can install us-eli-mcp by cloning the repository (https://github.com/matematicsolutions/us-eli-mcp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is matematicsolutions/us-eli-mcp safe to use?

+

Our security agent has analyzed matematicsolutions/us-eli-mcp and assigned a Trust Score of 95/100 (tier: Verified). See the full breakdown of passed checks and flags on this page.

Who maintains matematicsolutions/us-eli-mcp?

+

matematicsolutions/us-eli-mcp is maintained by matematicsolutions. The last recorded GitHub activity is dated 2026-08-24, with 0 open issues.

Are there alternatives to us-eli-mcp?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy us-eli-mcp to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: matematicsolutions/us-eli-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/matematicsolutions-us-eli-mcp)](https://claudewave.com/repo/matematicsolutions-us-eli-mcp)
<a href="https://claudewave.com/repo/matematicsolutions-us-eli-mcp"><img src="https://claudewave.com/api/badge/matematicsolutions-us-eli-mcp" alt="Featured on ClaudeWave: matematicsolutions/us-eli-mcp" width="320" height="64" /></a>

More MCP Servers

us-eli-mcp alternatives