Data Processing
Reverse engineer SVG charts into data points for line, bar, scatter, and pie-style SVG structures
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/svg-chart-to-data-extractor' \
-H 'Content-Type: application/json' \
-d '{"svgContent":"<svg viewBox=\"0 0 400 200\" xmlns=\"http://www.w3.org/2000/svg\"><polyline points=\"20,180 120,110 220,80 320,30\" /></svg>","chartType":"line","xAxisMin":0,"xAxisMax":12,"yAxisMin":0,"yAxisMax":80}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/svg-chart-to-data-extractor| Name | Type | Required | Description |
|---|---|---|---|
| svgContent | textarea | Yes | — |
| chartType | select | No | — |
| xAxisMin | number | No | — |
| xAxisMax | number | No | — |
| yAxisMin | number | No | — |
| yAxisMax |
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-svg-chart-to-data-extractor": {
"name": "svg-chart-to-data-extractor",
"description": "Reverse engineer SVG charts into data points for line, bar, scatter, and pie-style SVG structures",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=svg-chart-to-data-extractor",
"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": "svg-chart-to-data-extractor",
"arguments": {
"svgContent": "<svg viewBox=\"0 0 400 200\" xmlns=\"http://www.w3.org/2000/svg\"><polyline points=\"20,180 120,110 220,80 320,30\" /></svg>",
"chartType": "line",
"xAxisMin": 0,
"xAxisMax": 12,
"yAxisMin": 0,
"yAxisMax": 80
}
}
}Questions or issues? Contact [email protected]
| number |
| No |
| — |
JSON result
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}