Skip to content
LangChain

Coding Guides for LangChain

io.github.delian/codeguide-mcp

Coding guidelines and best-practice guides for 130+ languages, frameworks, and tools.

client:LangChain transport:streamable-http runtime:oci tools:1

Install Coding Guides in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "codeguide-mcp": {
            "transport": "streamable_http",
            "url": "https://codeguide-mcp-86057491046.europe-west1.run.app/mcp",
        }
})

tools = await client.get_tools()

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

What LangChain can do once it is connected

Coding Guides in other clients