Skip to content
LangChain

cursor chat bridge for LangChain

io.github.udah1/cursor-chat-bridge

Drive the Cursor agent from Telegram, Discord, or GitHub — with images and voice notes.

client:LangChain transport:stdio runtime:npm

Install cursor chat bridge in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "cursor-chat-bridge": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "cursor-telegram-chat"],
        }
})

tools = await client.get_tools()

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

cursor chat bridge in other clients