Skip to content
LangChain

crypto com mcp for LangChain

io.github.mrfentmen/crypto-com-mcp

Crypto prices from Crypto.com. No key required.

client:LangChain transport:stdio runtime:npm

Install crypto com mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

crypto com mcp in other clients