Data Processing
Infer a relational schema from CSV data and generate create-table plus ALTER migration plans for PostgreSQL, MySQL, SQLite, or SQL Server
Call this tool from your code in three languages.
# 1) Upload each file first → returns { filePath }
curl -X POST 'https://api.elysiatools.com/upload/csv-to-database-migration-planner' \
-F 'file=@/path/to/csvFile.ext'
# 2) Call the tool with the returned filePath values
curl -X POST 'https://api.elysiatools.com/en/api/tools/csv-to-database-migration-planner' \
-F 'csvInput=id,customer_id,email,total,created_at,status
1,10,[email protected],120.50,2026-04-05,paid
2,11,[email protected],40.00,2026-04-06,pending' \
-F 'csvFile=' \
-F 'tableName=customer_orders' \
-F 'targetDatabase=postgresql' \
-F 'existingSchema=CREATE TABLE customer_orders (
id INTEGER PRIMARY KEY
);' \
-F 'schemaOverrides={"status":"VARCHAR(32)","customer_id":{"type":"BIGINT","index":true}}' \
-F 'generateAlterPlan=true'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/csv-to-database-migration-planner| Name | Type | Required | Description |
|---|---|---|---|
| csvInput | textarea | No | — |
| csvFile | fileupload required | No | — |
| tableName | text | No | — |
| targetDatabase | select | No | — |
| existingSchema | textarea | No | — |
| schemaOverrides | textarea | No | — |
| generateAlterPlan | checkbox | No | — |
HTML result
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-csv-to-database-migration-planner": {
"name": "csv-to-database-migration-planner",
"description": "Infer a relational schema from CSV data and generate create-table plus ALTER migration plans for PostgreSQL, MySQL, SQLite, or SQL Server",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=csv-to-database-migration-planner",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "csv-to-database-migration-planner",
"arguments": {
"csvInput": "id,customer_id,email,total,created_at,status\n1,10,[email protected],120.50,2026-04-05,paid\n2,11,[email protected],40.00,2026-04-06,pending",
"csvFile": "",
"tableName": "customer_orders",
"targetDatabase": "postgresql",
"existingSchema": "CREATE TABLE customer_orders (\n id INTEGER PRIMARY KEY\n);",
"schemaOverrides": "{\"status\":\"VARCHAR(32)\",\"customer_id\":{\"type\":\"BIGINT\",\"index\":true}}",
"generateAlterPlan": true
}
}
}Questions or issues? Contact [email protected]