Skip to content
LangChain

Claude Code Ultimate Guide for LangChain

io.github.florianbruniaux/claude-code-guide

Search the Claude Code Ultimate Guide and machine-readable references from any MCP client.

client:LangChain transport:stdio runtime:npm

Install Claude Code Ultimate Guide in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

Claude Code Ultimate Guide in other clients