LegalMCP
LegalMCP
The first comprehensive US legal MCP server for AI assistants.
Connect Claude, GPT, Cursor, or any MCP-compatible AI to 4M+ US court opinions, Clio practice management, and PACER federal filings. Research in seconds, not hours.
30-Second Demo
You: Find Supreme Court cases about Fourth Amendment and cell phone location data
LegalMCP: Found 52 results. Top case:
Carpenter v. United States, 585 U.S. 296 (2018)
The Court held that accessing historical cell-site location
information constitutes a search under the Fourth Amendment,
requiring a warrant supported by probable cause.
→ 127 cases cite this opinion
→ Full text: courtlistener.com/opinion/4578834Why LegalMCP?
Traditional Research | AI + LegalMCP | |
Find relevant cases | 45-90 min | < 30 sec |
Trace citation history | Open Westlaw, click around | "Who cited this case?" |
Pull client billing | Log into Clio, navigate menus | "Total hours on Henderson?" |
Monthly cost | $200-400 (Westlaw/Lexis) | Free |
Quick Start
Install
We recommend using a virtual environment to avoid conflicts with other packages:
# Create and activate a virtual environment
python -m venv legal-mcp-env
# Windows
legal-mcp-env\Scripts\activate
# Mac/Linux
source legal-mcp-env/bin/activate
# Install
pip install legal-mcpOr install from GitHub:
pip install git+https://github.com/Mahender22/legal-mcp.gitRun
Want to try it without API keys? Enable demo mode first (optional):
# Mac/Linux
export LEGAL_MCP_DEMO=true
# Windows
set LEGAL_MCP_DEMO=trueThen start the server:
legal-mcpConnect to Claude Desktop
Add to your claude_desktop_config.json:
Windows (%APPDATA%\Claude\claude_desktop_config.json):
{
"mcpServers": {
"legal-mcp": {
"command": "C:/path/to/legal-mcp-env/Scripts/legal-mcp.exe",
"env": {
"LEGAL_MCP_DEMO": "true"
}
}
}
}Mac/Linux (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"legal-mcp": {
"command": "/path/to/legal-mcp-env/bin/legal-mcp",
"env": {
"LEGAL_MCP_DEMO": "true"
}
}
}
}Note: Use the full path to
legal-mcpinside your virtual environment. Remove theLEGAL_MCP_DEMOline and add your API keys for real data (see SETUP.md).
Connect to Claude Code
Run this command to add LegalMCP globally (available in every session):
Mac/Linux:
claude mcp add legal-mcp /path/to/legal-mcp-env/bin/legal-mcpWindows:
claude mcp add legal-mcp C:\path\to\legal-mcp-env\Scripts\legal-mcp.exeTo enable demo mode, add the env flag:
Mac/Linux:
claude mcp add legal-mcp -e LEGAL_MCP_DEMO=true -- /path/to/legal-mcp-env/bin/legal-mcpWindows:
claude mcp add legal-mcp -e LEGAL_MCP_DEMO=true -- C:\path\to\legal-mcp-env\Scripts\legal-mcp.exeTip: To add it to a specific project only, add
-s projectflag or create a.mcp.jsonfile in your project root.
Connect to Cursor / Windsurf
LegalMCP works with any MCP-compatible client. Add the legal-mcp command to your AI tool's MCP server configuration.
Configuration
Set environment variables for API access. See SETUP.md for step-by-step instructions.
Variable | Required | Description |
| Optional | Higher rate limits for case law search |
| For Clio tools | OAuth token for practice management |
| For PACER tools | PACER account username |
| For PACER tools | PACER account password |
| Optional | Set |
All 18 Tools
Case Law
Tool | What It Does |
| Search 4M+ US court opinions by topic, court, date range |
| Get full opinion text for a specific case |
| Get docket — parties, judges, procedural history |
| Find cases that cite a specific opinion |
| Find cases that an opinion relies on |
| Parse Bluebook citations from any text |
| List all 400+ courts and their codes |
| Decode reporter abbreviations (U.S., F.3d, etc.) |
Practice Management — Clio
Tool | What It Does |
| Search contacts by name, email, phone |
| Search matters by number, description, status |
| Full matter info — client, billing, deadlines |
| Billable hours by matter, attorney, date range |
| Tasks and to-dos for a matter |
| Documents attached to a matter |
| Hearings, deadlines, and meetings |
Court Filings — PACER
Tool | What It Does |
| Search PACER for federal court cases |
| Get case details from PACER |
| Get docket entries and filings |
Note: PACER charges $0.10/page for document downloads. LegalMCP searches and lists for free — it does not auto-download paid documents.
Pricing
Free and open source. All 18 tools, MIT license, no paywall. Just install and go.
Docker
# Copy and configure environment
cp .env.example .env
# Edit .env with your API keys
# Run
docker-compose upThis starts the MCP server on port 8000 and the waitlist API on port 8080.
How It Works
LegalMCP is a Model Context Protocol server. MCP is an open standard that lets AI assistants call external tools — like searching case law or querying your Clio data.
┌──────────────┐ MCP ┌──────────────┐ API ┌──────────────┐
│ │ ──────────► │ │ ──────────► │ │
│ Claude / │ Tool calls │ LegalMCP │ HTTP │ CourtListener│
│ GPT / │ ◄────────── │ Server │ ◄────────── │ Clio / PACER │
│ Cursor │ Results │ (your PC) │ JSON │ │
└──────────────┘ └──────────────┘ └──────────────┘Your data stays on your machine. LegalMCP runs locally and connects directly to the APIs.
Development
# Clone and install
git clone https://github.com/Mahender22/legal-mcp.git
cd legal-mcp
pip install -e ".[dev,waitlist]"
# Run tests
pytest legal_mcp/tests/ -v
# Run server locally
python -m legal_mcp.src.serverLicense
MIT — use it however you want.