Data Visualization
Generate simplified spider (radar) charts for multi-dimensional data comparison and analysis
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/spider-chart-generator' \
-H 'Content-Type: application/json' \
-d '{"chartData":"JSON format:\n[{"dimension": "Performance", "value": 85},\n{"dimension": "Quality", "value": 92},\n{"dimension": "Innovation", "value": 78},\n{"dimension": "Teamwork", "value": 88},\n{"dimension": "Leadership", "value": 75}]\n\nor text format:\nPerformance:85\nQuality:92\nInnovation:78\nTeamwork:88\nLeadership:75","chartTitle":"Enter chart title...","colorScheme":"default","lineColor":"#3b82f6","chartSize":"500","maxValue":0,"minValue":"0","lineWidth":"2","pointSize":"5","animationDuration":"1000","backgroundColor":"#ffffff","gridColor":"#e0e0e0","fillArea":true,"showGrid":true,"showValues":true,"showLegend":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/spider-chart-generator| Name | Type | Required | Description |
|---|---|---|---|
| chartData | textarea | Yes | Data for the spider chart. Supports JSON array or simple dimension:value text format |
| chartTitle | text | No | Title that will be displayed above the chart |
| colorScheme | select | No | — |
| lineColor | color | No | Primary color for the spider chart line (overrides color scheme) |
| chartSize | number | No | Size of the square chart in pixels |
| maxValue | number | No | Maximum value for the chart scale (leave empty for auto) |
| minValue | number | No | Minimum value for the chart scale |
| lineWidth | number | No | Width of the spider chart line in pixels |
| pointSize | number | No | Size of the data points in pixels |
| animationDuration | number | No | Duration of chart animation in milliseconds |
| backgroundColor | color | No | Background color for the chart container |
| gridColor | color | No | Color for the grid lines |
| fillArea | checkbox | No | Fill the area inside the spider chart |
| showGrid | checkbox | No | Display grid lines for better readability |
| showValues | checkbox | No | Display values on the data points |
| showLegend | checkbox | No | Display a data table below the chart |
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-spider-chart-generator": {
"name": "spider-chart-generator",
"description": "Generate simplified spider (radar) charts for multi-dimensional data comparison and analysis",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=spider-chart-generator",
"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": "spider-chart-generator",
"arguments": {
"chartData": "JSON format:\n[{"dimension": "Performance", "value": 85},\n{"dimension": "Quality", "value": 92},\n{"dimension": "Innovation", "value": 78},\n{"dimension": "Teamwork", "value": 88},\n{"dimension": "Leadership", "value": 75}]\n\nor text format:\nPerformance:85\nQuality:92\nInnovation:78\nTeamwork:88\nLeadership:75",
"chartTitle": "Enter chart title...",
"colorScheme": "default",
"lineColor": "#3b82f6",
"chartSize": "500",
"maxValue": 0,
"minValue": "0",
"lineWidth": "2",
"pointSize": "5",
"animationDuration": "1000",
"backgroundColor": "#ffffff",
"gridColor": "#e0e0e0",
"fillArea": true,
"showGrid": true,
"showValues": true,
"showLegend": true
}
}
}Questions or issues? Contact [email protected]