Skip to content
LangChain

DBMigratePro Continuous Migration for LangChain

io.github.provydon/dbmigratepro-continuous-migration

Keep a target database continuously in sync with a source on another provider, then promote it.

client:LangChain transport:streamable-http

Install DBMigratePro Continuous Migration in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "dbmigratepro-continuous-migration": {
            "transport": "streamable_http",
            "url": "https://dbmigratepro.com/mcp-replicas",
        }
})

tools = await client.get_tools()

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

DBMigratePro Continuous Migration in other clients