Skip to content
LangChain

Claude Code Explorer MCP for LangChain

io.github.divu2025/codemaster

Explore the Claude Code CLI source — browse tools, commands, search code, and more.

client:LangChain transport:stdio runtime:npm

Install Claude Code Explorer MCP in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

Claude Code Explorer MCP in other clients