🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

migraflow-mcp

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

migraflow-mcp

MigraFlow MCP Server - AI-powered database migration tools for Cursor and Claude Desktop

pipPyPI
Version
1.0.1
Weekly downloads
21
Maintainers
1

MigraFlow MCP Server

AI-powered database migration tools for Cursor, Claude Desktop and any MCP-compatible IDE.

Installation

pip install migraflow-mcp

Configuration

Cursor

Add to your MCP settings:

{
  "migraflow": {
    "command": "python",
    "args": ["-m", "migraflow_mcp"],
    "env": {
      "MIGRAFLOW_API_KEY": "mk_consultant_xxx",
      "MIGRAFLOW_API_URL": "https://api.migraflow.com.br/api/v1"
    }
  }
}

Claude Desktop

Windows: %APPDATA%\Claude\claude_desktop_config.json

Mac: ~/Library/Application Support/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "migraflow": {
      "command": "python",
      "args": ["-m", "migraflow_mcp"],
      "env": {
        "MIGRAFLOW_API_KEY": "mk_consultant_xxx",
        "MIGRAFLOW_API_URL": "https://api.migraflow.com.br/api/v1"
      }
    }
  }
}

Available Tools

validate_schema(ddl)

Quick syntax check and dialect detection before full analysis.

analyze_schema(ddl, context, target_dialect)

Full schema analysis with mapping, risk score, migration SQL and rollback.

review_migration(migration_sql, target_dialect, context)

AI-powered review of migration SQL with quality score and fixes.

explain_mapping(mapping_id)

Explains why the AI made specific mapping decisions.

parse_nosql(schema_json)

Parses NoSQL schemas (JSON Schema, Mongoose, sample documents).

get_docs_url()

Returns documentation URL and quick reference.

Supported Dialects

Oracle, SQL Server, MySQL, PostgreSQL, DB2, Sybase, Snowflake, BigQuery, Redshift

Example Usage

In Cursor or Claude Desktop:

"Analyze this Oracle schema and generate a PostgreSQL migration plan"

"Validate this DDL before I run the full analysis"

"Review this migration SQL and tell me what indexes are missing"

API Key

Request your Enterprise API key at: wimeisoftwares.com

Documentation

docs.wimeisoftwares.com

Keywords

mcp

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts