Skip to content
LangChain

site for LangChain

uk.co.shiftpatterngenerator/site

Shift Pattern Generator: the site's own MCP server — calculator, enquiry (enquiry = a human...

client:LangChain transport:streamable-http

Install site in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "site": {
            "transport": "streamable_http",
            "url": "https://shiftpatterngenerator.co.uk/mcp",
        }
})

tools = await client.get_tools()

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

site in other clients