Legal MCP Server for Claude Provides Access to 4M+ US Court Opinions

Legal MCP Server for Claude AI
A developer has built an MCP (Model Context Protocol) server that provides Claude AI with access to over 4 million real US court opinions, eliminating citation hallucinations in legal queries. The tool is free, open-source under MIT license, and has no paid tiers.
Key Features and Tools
The server includes 18 tools covering:
- Case law search
- Citation tracing
- Bluebook citation parsing
- Clio practice management integration
- PACER federal filings access
Users can ask Claude questions like:
- "Find Supreme Court cases about qualified immunity after 2020"
- "Parse this citation: 347 U.S. 483 (1954)"
- "Who cited Carpenter v. United States?"
The server returns real cases with accurate citations and links.
Installation and Setup
Install via pip:
pip install git+https://github.com/Mahender22/legal-mcp.gitFor Claude Desktop, add to config:
{
"mcpServers": {
"legal-mcp": {
"command": "/path/to/legal-mcp-env/bin/legal-mcp",
"env": {
"LEGAL_MCP_DEMO": "true"
}
}
}
}For Claude Code:
claude mcp add legal-mcp -e LEGAL_MCP_DEMO=true -- /path/to/legal-mcp-env/bin/legal-mcpThe tool was built entirely with Claude Code (Opens) and requires no account or credit card to use.
📖 Read the full source: r/ClaudeAI
👀 See Also

Claude Code's Illusion of Finished Work: Why Reviewing the Agent's Path Matters More Than the Diff
Claude Code can produce a clean diff, passing tests, and a good summary—yet still miss real behavior, security concerns, or architecture constraints. The author argues that reviewing the chain of actions (plans, files read, commands run, test output) is now essential, not just the final diff.

Claude Code v2.1.229: Remote Control, Plugin Marketplaces, and Critical Fixes
Claude Code v2.1.229 adds Remote Control --continue, plugin marketplace command sources, SSE keepalives, and fixes crashes, MCP OAuth, and file-watcher leaks.

Lucas Gerads demonstrates MCP servers for oscilloscope and SPICE simulator integration with Claude Code
Lucas Gerads built MCP servers for his LeCroy oscilloscope and SPICE simulator, enabling Claude Code to validate SPICE circuits and models, handle embedded programming, and automate data analysis tasks like time axis normalization and data alignment.

Telegram Bot to Manage Headless Claude Code Channels via tmux
A zero-dependency Python Telegram bot that launches, stops, and monitors Claude Code Channels sessions in tmux on a headless server, with watchdog auto-restart.