Data Visualization
Generate parallel coordinates charts for multidimensional data visualization with customizable normalization
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/parallel-coordinates-chart' \
-H 'Content-Type: application/json' \
-d '{"chartData":"JSON array format:\n[{"name": "Product A", "price": 100, "quality": 8.5, "sales": 250, "rating": 4.2},\n {"name": "Product B", "price": 150, "quality": 9.2, "sales": 180, "rating": 4.8},\n {"name": "Product C", "price": 80, "quality": 7.8, "sales": 320, "rating": 3.9}]\n\nEach object represents a data item with multiple numeric dimensions","chartTitle":"Enter chart title...","axisCount":"10","normalizationMethod":"minmax","colorScheme":"default","backgroundColor":"#ffffff","gridColor":"#e0e0e0","lineWidth":"1.5","lineOpacity":"0.7","chartWidth":"1200","chartHeight":"600","fontSize":"12","marginSize":"80","showGrid":true,"showLabels":true,"showLegend":true,"showStats":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/parallel-coordinates-chart| Name | Type | Required | Description |
|---|---|---|---|
| chartData | textarea | Yes | Data for the chart. Must be a JSON array of objects with numeric dimensions |
| chartTitle | text | No | Title that will be displayed above the chart |
| axisCount | number | No | Maximum number of dimensions/axes to display |
| normalizationMethod | select | No | — |
| colorScheme | select | No | — |
| backgroundColor | color | No | Background color for the chart container |
| gridColor | color | No | Color for the grid lines |
| lineWidth | number | No | Width of the data lines |
| lineOpacity | number | No | Opacity of the data lines (0-1, supports decimals) |
| chartWidth | number | No | Width of the chart in pixels |
| chartHeight | number | No | Height of the chart in pixels |
| fontSize | number | No | Font size for axis labels |
| marginSize | number | No | Margin around the chart |
| showGrid | checkbox | No | Display grid lines for better readability |
| showLabels | checkbox | No | Display labels for each axis |
| showLegend | checkbox | No | Display a legend with line colors |
| showStats | checkbox | No | Display chart statistics and dimension ranges |
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-parallel-coordinates-chart": {
"name": "parallel-coordinates-chart",
"description": "Generate parallel coordinates charts for multidimensional data visualization with customizable normalization",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=parallel-coordinates-chart",
"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": "parallel-coordinates-chart",
"arguments": {
"chartData": "JSON array format:\n[{"name": "Product A", "price": 100, "quality": 8.5, "sales": 250, "rating": 4.2},\n {"name": "Product B", "price": 150, "quality": 9.2, "sales": 180, "rating": 4.8},\n {"name": "Product C", "price": 80, "quality": 7.8, "sales": 320, "rating": 3.9}]\n\nEach object represents a data item with multiple numeric dimensions",
"chartTitle": "Enter chart title...",
"axisCount": "10",
"normalizationMethod": "minmax",
"colorScheme": "default",
"backgroundColor": "#ffffff",
"gridColor": "#e0e0e0",
"lineWidth": "1.5",
"lineOpacity": "0.7",
"chartWidth": "1200",
"chartHeight": "600",
"fontSize": "12",
"marginSize": "80",
"showGrid": true,
"showLabels": true,
"showLegend": true,
"showStats": true
}
}
}Questions or issues? Contact [email protected]