Skip to content
LangChain

DBMigratePro Migrations for LangChain

io.github.provydon/dbmigratepro-migrations

Move a database between providers, or convert MySQL to PostgreSQL, with integrity verified.

client:LangChain transport:streamable-http

Install DBMigratePro Migrations in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

DBMigratePro Migrations in other clients