Data Visualization
Create beautiful circular progress indicators with animations, perfect for displaying percentages, completion rates, and progress metrics
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/progress-ring-chart' \
-H 'Content-Type: application/json' \
-d '{"progressData":"JSON format:\n[{"label": "Project A", "value": 75},\n{"label": "Project B", "value": 90},\n{"label": "Project C", "value": 45}]\n\nor text format:\nProject A:75\nProject B:90\nProject C:45\n\nor single values:\n75\n90\n45","chartTitle":"Enter chart title...","ringSize":"200","ringThickness":"15","startAngle":"-90","colorScheme":"default","customColors":"#3b82f6,#10b981,#f59e0b","animationDuration":"1000","backgroundColor":"#ffffff","showPercentage":true,"showLabel":true,"animated":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/progress-ring-chart| Name | Type | Required | Description |
|---|---|---|---|
| progressData | textarea | Yes | Progress values (0-100). Supports JSON array with labels, simple label:value pairs, or just values |
| chartTitle | text | No | Title that will be displayed above the chart |
| ringSize | number | No | Size of each progress ring in pixels |
| ringThickness | number | No | Thickness of the progress ring stroke |
| startAngle | number | No | Starting angle in degrees (-90 = top, 0 = right, 90 = bottom, 180 = left) |
| colorScheme | select | No | — |
| customColors | text | No | Custom colors for progress rings (comma-separated hex colors) |
| animationDuration | number | No | Duration of the progress animation in milliseconds |
| backgroundColor | color | No | Background color for the chart container |
| showPercentage | checkbox | No | Display percentage value in the center of each ring |
| showLabel | checkbox | No | Display label below each progress ring |
| animated | checkbox | No | Animate the progress rings when they load |
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-progress-ring-chart": {
"name": "progress-ring-chart",
"description": "Create beautiful circular progress indicators with animations, perfect for displaying percentages, completion rates, and progress metrics",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=progress-ring-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": "progress-ring-chart",
"arguments": {
"progressData": "JSON format:\n[{"label": "Project A", "value": 75},\n{"label": "Project B", "value": 90},\n{"label": "Project C", "value": 45}]\n\nor text format:\nProject A:75\nProject B:90\nProject C:45\n\nor single values:\n75\n90\n45",
"chartTitle": "Enter chart title...",
"ringSize": "200",
"ringThickness": "15",
"startAngle": "-90",
"colorScheme": "default",
"customColors": "#3b82f6,#10b981,#f59e0b",
"animationDuration": "1000",
"backgroundColor": "#ffffff",
"showPercentage": true,
"showLabel": true,
"animated": true
}
}
}Questions or issues? Contact [email protected]