Skip to content
LangChain

Telbase for LangChain

ai.telbase/deploy

Deploy any web project with one command. AI-native platform with self-healing feedback.

client:LangChain transport:stdio runtime:npm

Install Telbase in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

Telbase in other clients