Skip to content
LangChain

stackguide mcp for LangChain

io.github.taimiralain/stackguide-mcp

Dynamic context loading for AI assistants with TDD workflow and AST analysis

client:LangChain transport:stdio runtime:npm

Install stackguide mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

stackguide mcp in other clients