Skip to content
LangChain

coding standards for LangChain

io.github.corbat-tech/coding-standards

AI coding standards that enforce production-grade code with DDD, SOLID, TDD guardrails.

client:LangChain transport:stdio runtime:npm

Install coding standards in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "coding-standards": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "@corbat-tech/coding-standards-mcp"],
        }
})

tools = await client.get_tools()

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

coding standards in other clients