Skip to content
LangChain

celmis for LangChain

io.github.constantinemakoid/celmis

Self-hosted code intelligence: cross-repo Q&A, dependency audits and PR review, over MCP

client:LangChain transport:stdio runtime:oci

Install celmis in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "celmis": {
            "transport": "stdio",
            "command": "docker",
            "args": ["run", "-i", "--rm", "ghcr.io/celmis-labs/celmis-api:v0.1.30"],
        }
})

tools = await client.get_tools()

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

celmis in other clients