Skip to content
LangChain

mindmaps for LangChain

app.cloudmindmaps/mindmaps

Create and read mind maps on CloudMindMaps from Claude and other AI assistants.

client:LangChain transport:stdio runtime:npm

Install mindmaps in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

mindmaps in other clients