Skip to content
LangChain

algorand mcp for LangChain

io.github.mrfentmen/algorand-mcp

Algorand chain status from the public indexer. No key required.

client:LangChain transport:stdio runtime:npm

Install algorand mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

algorand mcp in other clients