Skip to content
LangChain

Court Records MCP for LangChain

net.nexlab/court-records

Search US federal and state court records through CourtListener and the RECAP archive

client:LangChain transport:streamable-http

Install Court Records MCP in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "court-records": {
            "transport": "streamable_http",
            "url": "https://mcp.nexlab.net/mcp/court-records",
        }
})

tools = await client.get_tools()

get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs

Court Records MCP in other clients