Skip to content
LangChain

Boyce for LangChain

io.github.boyce-io/boyce

Deterministic SQL compiler for AI agents. Your agent stops guessing SQL.

client:LangChain transport:stdio runtime:pypi

Install Boyce in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "boyce": {
            "transport": "stdio",
            "command": "uvx",
            "args": ["boyce"],
        }
})

tools = await client.get_tools()

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

Boyce in other clients