Skip to content
LangChain

DJ Claude for LangChain

io.github.p-poss/dj-claude

Agents can now live code music for you, themselves, and each other while they work.

client:LangChain transport:stdio runtime:npm

Install DJ Claude in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

DJ Claude in other clients