Skip to content
LangChain

buoy for LangChain

io.github.ahoybuoy/buoy

Design tokens and drift checks for coding agents: use the token, not the hardcoded value.

client:LangChain transport:stdio runtime:npm

Install buoy in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "buoy": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "@buoy-design/cli"],
        }
})

tools = await client.get_tools()

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

buoy in other clients