Skip to content
LangChain

dbtrail for LangChain

com.dbtrail/dbtrail

MySQL change tracking with instant row-level recovery and forensic attribution for compliance.

client:LangChain transport:streamable-http

Install dbtrail in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "dbtrail": {
            "transport": "streamable_http",
            "url": "https://api.dbtrail.com/mcp",
        }
})

tools = await client.get_tools()

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

dbtrail in other clients