Skip to content
LangChain

SQLBot MCP Proxy for LangChain

io.github.wenrou21/sqlbot-mcp-proxy

MCP server proxy for SQLBot Text-to-SQL queries and report generation.

client:LangChain transport:stdio runtime:oci

Install SQLBot MCP Proxy in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "sqlbot-mcp-proxy": {
            "transport": "stdio",
            "command": "docker",
            "args": ["run", "-i", "--rm", "ghcr.io/wenrou21/sqlbot-mcp-proxy:0.1.0"],
        }
})

tools = await client.get_tools()

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

SQLBot MCP Proxy in other clients