Skip to content
LangChain

Content Handling Guide for LangChain

io.github.wxt-ai/content-handling-guide

Set handling guidance for a content item

client:LangChain transport:streamable-http

Install Content Handling Guide in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "content-handling-guide": {
            "transport": "streamable_http",
            "url": "https://openings-vote-drilling-initially.trycloudflare.com/mcp/content-handling-guide",
        }
})

tools = await client.get_tools()

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

Content Handling Guide in other clients