Skip to content
LangChain

Contextaco for LangChain

com.contextaco/contextaco

Never explain the same context twice. Capture it once, load it anywhere, fork it to make it yours.

client:LangChain transport:streamable-http

Install Contextaco in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "contextaco": {
            "transport": "streamable_http",
            "url": "https://mcp.contextaco.com",
        }
})

tools = await client.get_tools()

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

Contextaco in other clients