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

OpenSwarm: Multi-Agent Claude CLI Orchestrator for Linear and GitHub
OpenSwarm orchestrates multiple Claude Code CLI instances as autonomous agents that pull Linear issues and run Worker/Reviewer/Test/Documenter pipelines. It uses LanceDB with multilingual-e5 embeddings for memory and includes Discord bot control, PR auto-improvement, and a web dashboard.

Open Source Auto-Memory System for LLM Agents Achieves 94% Recall Accuracy
A developer built a memory plugin for LLM-based agents that automatically extracts, classifies, and persists facts across sessions without explicit user commands. The system achieved 94.2% accuracy on a 52-checkpoint recall benchmark using structured markdown files instead of vector databases.
Claude Code vs Codex: 36 vs 28 files, $2.50 vs $2.04, infinite loop caught — real-world comparison
A developer runs the same two tasks on Claude Code and Codex (Cursor): PR triage bot and real-time code review UI. Results: 36 vs 28 files, $2.50 vs $2.04 cost, Claude produced fewer TypeScript errors, Codex had an infinite React loop.

Graphify: A Claude Code Skill That Built a Knowledge Graph of Your Repo — 450k Downloads, 40k Stars in 26 Days
Graphify is a Claude Code skill that reads every file in your repo, builds a knowledge graph with Leiden community detection, and queries it at 71x fewer tokens than raw files. 450k+ PyPI downloads, ~40k GitHub stars, #2 global rank in first week.