Chord Diagram Generator
Generate interactive chord diagrams for visualizing bidirectional flows and relationships between entities
API Documentation
Request Endpoint
POST /en/api/tools/chord-diagram-generator
Request Parameters
| Parameter Name | Type | Required | Description |
|---|---|---|---|
| chartData | textarea | Yes | Array of connections with source, target, and value fields |
| chartTitle | text | No | Title displayed above the chart |
| sortOrder | select | No | - |
| colorScheme | select | No | - |
| backgroundColor | color | No | Chart background color |
| radius | number | No | Outer circle radius in pixels |
| innerRadius | number | No | Inner circle radius in pixels |
| chordOpacity | number | No | Chord transparency (0-1) |
| padding | number | No | Space between arcs (0-0.1) |
| showLabels | checkbox | No | Display entity names |
| showValues | checkbox | No | Display total flow values |
| showLegend | checkbox | No | Display color legend |
| showStats | checkbox | No | Display flow statistics |
| enableAnimation | checkbox | No | Animate on load |
| animationDuration | number | No | Animation time in milliseconds |
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-chord-diagram-generator": {
"name": "chord-diagram-generator",
"description": "Generate interactive chord diagrams for visualizing bidirectional flows and relationships between entities",
"baseUrl": "https://elysiatools.com/mcp/sse?toolId=chord-diagram-generator",
"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]