Skip to content
LangChain

Pally for LangChain

com.pally/pally

Chat with Pally, the AI assistant in your texts and on Telegram, from any MCP-compatible AI app.

client:LangChain transport:streamable-http

Install Pally in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "pally": {
            "transport": "streamable_http",
            "url": "https://agent.pally.com/mcp",
        }
})

tools = await client.get_tools()

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

Pally in other clients