Milestone Chart Generator
Generate project milestone charts with timeline nodes and key achievement points
API Documentation
Request Endpoint
POST /en/api/tools/milestone-chart
Request Parameters
| Parameter Name | Type | Required | Description |
|---|---|---|---|
| milestoneData | textarea | Yes | Milestone data. Can be JSON array with name, date, status, description, progress or simple text format |
| chartTitle | text | No | Title that will be displayed above the chart |
| orientation | select | No | - |
| milestoneColor | color | No | Color for milestone nodes (in-progress) |
| completedColor | color | No | Color for completed milestones |
| timelineColor | color | No | Color for the main timeline line |
| textColor | color | No | Color for milestone labels and descriptions |
| backgroundColor | color | No | Background color for the chart container |
| nodeSize | number | No | Size of milestone nodes in pixels |
| lineWidth | number | No | Width of the timeline line in pixels |
| chartHeight | number | No | Height of the chart in pixels |
| showDates | checkbox | No | Display dates below milestone names |
| showProgress | checkbox | No | Display progress indicators and percentages |
Response Format
{
"result": "Processed HTML content",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}
HTML:
HTML
AI MCP Documentation
Add this tool to your MCP server configuration:
{
"mcpServers": {
"elysiatools-milestone-chart": {
"name": "milestone-chart",
"description": "Generate project milestone charts with timeline nodes and key achievement points",
"baseUrl": "https://elysiatools.com/mcp/sse?toolId=milestone-chart",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}
You can chain multiple tools, e.g.: `https://elysiatools.com/mcp/sse?toolId=png-to-webp,jpg-to-webp,gif-to-webp`, max 20 tools.
If you encounter any issues, please contact us at [email protected]