Skip to content
LangChain

calltouch mcp for LangChain

io.github.theyahia/calltouch-mcp

MCP server for Calltouch API — call tracking, call statistics. Token auth.

client:LangChain transport:stdio runtime:npm

Install calltouch mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

calltouch mcp in other clients