Skip to content
LangChain

Crs Reports for LangChain

io.github.pipeworx-io/crs-reports

Congressional Research Service reports — Congress's own nonpartisan analysis, searchable and…

client:LangChain transport:streamable-http

Install Crs Reports in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "crs-reports": {
            "transport": "streamable_http",
            "url": "https://gateway.pipeworx.io/crs-reports/mcp",
        }
})

tools = await client.get_tools()

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

Crs Reports in other clients