Skip to content
LangChain

Bomly for LangChain

io.github.bomly-dev/bomly-cli

Give your coding agent the dependency graph it is about to change: scan, diff, explain, audit

client:LangChain transport:stdio runtime:npm

Install Bomly in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "bomly-cli": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "bomly-mcp"],
        }
})

tools = await client.get_tools()

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

Bomly in other clients