Skip to content
LangChain

TCU Consolidada PJ for LangChain

io.github.mcp-dir/tcu_consolidada_pj-mcp

Consolidated lookup of a company at the Federal Audit Court (TCU) from the CNPJ, gathering sanctions

client:LangChain transport:streamable-http tools:7

Install TCU Consolidada PJ in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "tcu_consolidada_pj-mcp": {
            "transport": "streamable_http",
            "url": "https://api.mcp.ai/p_tcu_consolidada_pj",
        }
})

tools = await client.get_tools()

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

What LangChain can do once it is connected

TCU Consolidada PJ in other clients