Skip to content
LangChain

crowntowncompost mcp for LangChain

io.github.chrischall/crowntowncompost-mcp

Customer access to the Crown Town Compost portal: pickups, invoices, and skips (AI-built).

client:LangChain transport:stdio runtime:npm

Install crowntowncompost mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "crowntowncompost-mcp": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "crowntowncompost-mcp"],
        }
})

tools = await client.get_tools()

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

crowntowncompost mcp in other clients