Skip to content
LangChain

CoinGecko MCP by UnClick for LangChain

io.github.malamutemayhem/coingecko

CoinGecko tools for crypto, coingecko, bitcoin by UnClick.

client:LangChain transport:stdio runtime:npm

Install CoinGecko MCP by UnClick in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

CoinGecko MCP by UnClick in other clients