Data Visualization
Render hierarchical JSON into a vertical organizational chart with names and titles
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/org-chart-maker' \
-H 'Content-Type: application/json' \
-d '{"orgData":"{\n \"name\": \"Alex Rivera\",\n \"title\": \"CEO\",\n \"children\": [\n {\n \"name\": \"Sam Lee\",\n \"title\": \"VP Engineering\",\n \"children\": [\n { \"name\": \"Jordan Park\", \"title\": \"Eng Lead\" }\n ]\n },\n { \"name\": \"Morgan Chen\", \"title\": \"VP Sales\" }\n ]\n}","chartTitle":"Leadership","colorScheme":"default","showTitles":true,"boxStyle":"solid"}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/org-chart-maker| Name | Type | Required | Description |
|---|---|---|---|
| orgData | textarea | Yes | JSON hierarchy: each node has a name, optional title, and optional children array |
| chartTitle | text | No | — |
| colorScheme | select | Yes | — |
| showTitles | checkbox | No | — |
| boxStyle | select | Yes | — |
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-org-chart-maker": {
"name": "org-chart-maker",
"description": "Render hierarchical JSON into a vertical organizational chart with names and titles",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=org-chart-maker",
"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": "org-chart-maker",
"arguments": {
"orgData": "{\n \"name\": \"Alex Rivera\",\n \"title\": \"CEO\",\n \"children\": [\n {\n \"name\": \"Sam Lee\",\n \"title\": \"VP Engineering\",\n \"children\": [\n { \"name\": \"Jordan Park\", \"title\": \"Eng Lead\" }\n ]\n },\n { \"name\": \"Morgan Chen\", \"title\": \"VP Sales\" }\n ]\n}",
"chartTitle": "Leadership",
"colorScheme": "default",
"showTitles": true,
"boxStyle": "solid"
}
}
}HTML result
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Questions or issues? Contact [email protected]