Skip to main content
This skill depends on the Tako MCP server. See the MCP Server page for more details.
This skill teaches your coding agent to turn data it already has — a pasted table, query output, a metric it just computed — into a polished, embeddable Tako chart.

Copy and Paste in Claude Code

Click the copy button on the code block below and paste it into Claude Code. Claude will set up both the Tako MCP connection and the skill for you.
Set up Tako's "visualize your data" skill for me.

1) Ensure the Tako MCP server is connected — install it, or update it if it already exists (set $TAKO_API_TOKEN first, or paste your tako_sk_… token in place of it). Run:
claude mcp add --transport http tako https://mcp.tako.com/mcp --header "Authorization: Bearer ${TAKO_API_TOKEN}"

2) Create the skill at .claude/skills/visualize-your-data/SKILL.md with exactly this content:

---
name: visualize-your-data
description: Use when the user has their own numbers/rows and wants a chart, dashboard card, or embeddable visualization. Triggers on "chart this", "visualize", "make a graph of my data", "turn this into a card".
---
Use the Tako MCP `tako_visualize` tool to build an embeddable card from the user's data.

- Pick the `component_type` that fits the data: `generic_timeseries` (dates -> values), `categorical_bar` (categories -> values), `table`, `financial_boxes`, `pie`, `scatter`, `sankey`, `top_level_metric`, and more. Add a `header` component for a title.
- Put the data in each component's `config` object. The exact `config` fields differ per `component_type` — when unsure of a component's shape, or for a chart type not listed, fetch the Thin-Viz reference: https://docs.tako.com/documentation/integrating-tako/guides/chart-creation
- After the call, share the card by linking the response's `embed_url`, e.g. [Open in Tako](EMBED_URL).
- To embed the card live in a web page (not just link it), drop `embed_url` into an `<iframe>` and add the resize-listener script so it auto-sizes to the card's content — copy the snippet from the embedding guide: https://docs.tako.com/documentation/integrating-tako/guides/embedding-knowledge-cards#example-dynamic-resizing-script
- person_card must be the ONLY component when used.
- Each successful call creates a card and consumes credits.

3) Confirm the tako_visualize tool is available — I may need to restart Claude Code to load the new MCP server.