Skip to content
LangChain

census for LangChain

io.usefulapi/census

List reverse-ETL sources, destinations, models, syncs and runs; trigger syncs into SaaS tools.

client:LangChain transport:streamable-http

Install census in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "census": {
            "transport": "streamable_http",
            "url": "https://census.usefulapi.io/mcp",
        }
})

tools = await client.get_tools()

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

census in other clients