Skip to content
LangChain

mintclub for LangChain

io.github.h1-hunt/mintclub

Trade bonding curve tokens on Base via Mint Club V2 — buy, sell, swap, create

client:LangChain transport:stdio runtime:npm

Install mintclub in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

mintclub in other clients