Skip to content
LangChain

tend mcp for LangChain

io.github.nries1/tend-mcp

Unofficial MCP server for Tend Dental appointment booking. Not affiliated with Tend.

client:LangChain transport:stdio runtime:npm

Install tend mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

tend mcp in other clients