Skip to content
LangChain

constitution lint for LangChain

dev.agentopskit/constitution-lint

Static linter for CLAUDE.md-style agent constitution files: 10 operational-guardrail checks.

client:LangChain transport:streamable-http tools:1

Install constitution lint in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "constitution-lint": {
            "transport": "streamable_http",
            "url": "https://agentopskit.dev/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

constitution lint in other clients