generate_migration
Generate dialect-correct ALTER TABLE migration SQL and rollback from a plain-English intent. Output uses your database's exact dialect; never executed.
Instructions
Generate dialect-correct ALTER TABLE migration SQL + rollback from a plain-English intent. Output uses the connection's exact dialect. Never executes. [BUILD tier]
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- bin/server.js:119-124 (registration)The 'generate_migration' tool is registered in the static TOOLS array at line 120. However, this is a local reference adapter that does NOT contain real handler logic — it returns a redirect message for ALL tool calls (lines 190-193). The real implementation lives on the hosted server at https://data.thinair.co/mcp.
{ name: "generate_migration", description: "Generate dialect-correct ALTER TABLE migration SQL + rollback from a plain-English intent. Output uses the connection's exact dialect. Never executes. [BUILD tier]", inputSchema: { type: "object" }, },