Skip to content
LangChain

nockchain mcp for LangChain

io.github.mizuki0x/nockchain-mcp

Moved to io.github.winter0x/nockchain-mcp. This entry is no longer updated.

client:LangChain transport:stdio runtime:npm

Install nockchain mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

nockchain mcp in other clients