# Json To Org Chart — REST API endpoint `json-to-org-chart`

Generate nested HTML for an organisation chart from JSON of the form {"title","root":{"name","title","avatar","children":[...]}}. Returns the HTML (div.org-chart with .org-node/.node-card/.node-children classes), the node count, and the depth.

- Category: data
- MCP server: https://mcp.findutils.com/ (Streamable HTTP, no API keys, 120 req/min per IP)
- REST endpoint: POST https://api.findutils.com/api/tools/json-to-org-chart/execute (no API keys, 60 req/min per IP)
- Reference page: https://findutils.com/api/json-to-org-chart/
- Same tool on the other surface: https://findutils.com/mcp/json-to-org-chart/

## Call the endpoint (verified example)

```bash
curl -X POST https://api.findutils.com/api/tools/json-to-org-chart/execute \
  -H "Content-Type: application/json" \
  -d '{
    "json": "{\"title\":\"Team\",\"root\":{\"name\":\"Jane CEO\",\"title\":\"CEO\",\"children\":[{\"name\":\"Bob CTO\"}]}}"
  }'

# Parameter schema
curl https://api.findutils.com/api/tools/json-to-org-chart
```

## Input schema

| Argument | Type | Required | Description |
|---|---|---|---|
| `json` | string | yes | Org chart JSON: {"title"?: string, "root": {"name": string, "title"?: string, "avatar"?: url, "children"?: [node, ...]}}. |

Example arguments (verified):

```json
{
  "json": "{\"title\":\"Team\",\"root\":{\"name\":\"Jane CEO\",\"title\":\"CEO\",\"children\":[{\"name\":\"Bob CTO\"}]}}"
}
```

Decoded `json` argument (readability only — send it as a string):

```json
{
  "title": "Team",
  "root": {
    "name": "Jane CEO",
    "title": "CEO",
    "children": [
      {
        "name": "Bob CTO"
      }
    ]
  }
}
```

OpenAPI 3.1 spec: https://findutils.com/api/openapi.json · Interactive docs: https://findutils.com/api/docs/

## Also an MCP tool

```bash
claude mcp add findutils --transport http https://mcp.findutils.com/
```

Then ask the client to call `findutils:json_to_org_chart`. Full MCP reference: https://findutils.com/mcp/json-to-org-chart/

---
Full catalog: GET https://api.findutils.com/api/tools · https://findutils.com/api/ · https://findutils.com/llms.txt
