mcp-migration-tools
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-migration-toolsDetect the stack from these files: ProductList.asp, web.config"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
mcp-migration-tools
A small, public-safe FastMCP server that exposes practical legacy-to-modern migration helpers as AI-callable tools — the same "thin tool wrapper over tested, pure logic" pattern I use on a larger production MCP server, distilled into a clean, fully generic example.
Why this exists
Modernizing 100+ legacy apps means doing the same analysis over and over: what stack is this? what endpoints does it expose? how do I port this DDL? how big is the job? These are perfect MCP tools — small, deterministic, and callable by an AI agent (or a human) on demand.
Related MCP server: legacy-web-mcp
The tools
Tool | What it does |
| Infers the dominant tech stack from a file listing (weights manifests over single files) |
| Pulls |
| Converts SQL Server DDL into a portable Flyway migration (identity cols, |
| Transparent person-day estimate from coarse inventory counts, with a risk band |
Design: pure logic + thin MCP layer
tools/*.py ← pure, dependency-free functions (100% unit-tested)
▲
server.py ← FastMCP wrappers: @mcp.tool() delegating to the pure logicKeeping the logic free of the MCP runtime means every tool is fast to test
and reusable outside MCP — the tests don't even import fastmcp.
Quick start
# install
pip install .[dev]
# run the tests (17 passing)
pytest -q
# run the MCP server (stdio transport)
mcp-migration-toolsUse the tools directly (no MCP needed)
from mcp_migration_tools.tools import detect_stack, sql_to_flyway
detect_stack(["ProductList.asp", "web.config"])
# {'stack': 'aspnet', 'confidence': 0.75, ...}
sql_to_flyway("CREATE TABLE [dbo].[Product]([Id] INT IDENTITY(1,1))", version=1,
description="create product")
# {'filename': 'V1__create_product.sql', 'body': 'CREATE TABLE Product(Id INT GENERATED BY DEFAULT AS IDENTITY)\n'}Register with an MCP client
Example client config (e.g. for an MCP-capable IDE/agent):
{
"mcpServers": {
"migration-tools": {
"command": "mcp-migration-tools"
}
}
}Project structure
mcp-migration-tools/
├── src/mcp_migration_tools/
│ ├── server.py # FastMCP server (tool registration)
│ └── tools/ # pure, tested logic
│ ├── stack_detector.py
│ ├── api_extractor.py
│ ├── sql_translator.py
│ └── effort_estimator.py
├── tests/ # pytest suite (one file per tool)
├── .github/workflows/ci.yml # test on Python 3.11 & 3.12
└── pyproject.tomlPart of my modernization portfolio · simeptk.github.io · companion to legacy-to-modern-demo
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceA universal bridge that turns legacy backend services and modern APIs into AI-accessible tools without requiring code rewrites. It dynamically generates tool definitions from WSDL, OpenAPI, or custom JSON specs to enable AI assistants to interact with systems like SAP, IBMi, and SOAP services.Last updated
- Alicense-qualityDmaintenanceAutomatically crawl and analyze legacy web applications to generate documentation and modernization plans.Last updatedMIT
- AlicenseBqualityBmaintenanceAI-assisted COBOL to modern stack bridge that parses COBOL programs, maps to Python/Java/Go, generates test harnesses, and plans migration for legacy mainframe modernization.Last updated5MIT
- Alicense-quality-maintenanceConnects legacy COBOL mainframe systems to modern AI governance via MCP, with tools for parsing copybooks, assessing CICS, scanning JCL, mapping VSAM, and translating EBCDIC.Last updated1MIT
Related MCP Connectors
AI Agent with Architectural Memory. Impact analysis (free), tests and code from the graph (pro).
Enterprise code intelligence for M&A, security audits, and tech debt. Hosted server with 200k free.
Threat modeling, code/cloud/pipeline scanning, shadow-AI discovery, compliance checks and fixes.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/simeptk/mcp-migration-tools'
If you have feedback or need assistance with the MCP directory API, please join our Discord server