Skip to content
LangChain

threadmap mcp for LangChain

io.github.advertflair/threadmap-mcp

Conversation drift visualization for Claude. Color-coded inflection points and one-click forking.

client:LangChain transport:stdio runtime:npm

Install threadmap mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

threadmap mcp in other clients