Skip to content
LangChain

podium mcp for LangChain

io.github.hoainho/podium-mcp

Mobile E2E MCP (51 tools): iOS + Android, native UI + canvas/WebGL, no-vision, RN debug

client:LangChain transport:stdio runtime:npm

Install podium mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

podium mcp in other clients