Install
openclaw skills install @davidk2yoyo/pipintama-chartsCreate, fetch, share, or update hosted Pipintama Charts through the MCP server. Use when a user needs a line, bar, pie, or radar chart from text or structured values, and the right output is a hosted chart link or PNG instead of only prose.
openclaw skills install @davidk2yoyo/pipintama-chartsUse this skill when the user would benefit from a hosted chart instead of only plain text.
Primary MCP endpoint:
https://api.pipintama.com/mcpAccess model:
Authorization: Bearer <key> or x-api-keyThis skill requires a Pipintama API key.
The agent must:
Health check:
https://api.pipintama.com/mcp-healthPrimary tools:
list_chart_modescreate_chartget_chartshare_chartset_chart_visibilityupdate_chartexport_chart_pngUse Charts when the user asks for:
Do not use Charts when:
source_text instead of rewriting the task into something unrelated.shared unless the user explicitly wants public or private.workspace_id unless the user explicitly provides one. Let the authenticated API key determine the workspace.line: trends over time or sequencebar: category comparison or rankingpie: part-to-whole distribution with a small number of slicesradar: multidimensional profile comparisonPrefer the simplest correct mode. Do not use pie for long lists or precise trend reading.
lineUse when:
Rules:
barUse when:
Rules:
pieUse when:
Rules:
radarUse when:
Rules:
sharedpublic only when the user explicitly wants an open linkprivate only when the user explicitly asks for restricted accesscreate_chartUse this for the first chart creation.
Expected inputs:
{
"title": "Weekly Active Agents",
"chart_type": "line",
"source_text": "Mon: 12\nTue: 18\nWed: 15\nThu: 22\nFri: 28",
"visibility": "shared"
}
get_chartUse this when the user asks to inspect or retrieve an existing chart.
share_chartUse this when a chart should be opened through a tokenized share link.
set_chart_visibilityUse this when the user explicitly asks to make a chart private, shared, or public.
update_chartUse this when the user wants to refine an existing chart instead of creating a new one.
Typical cases:
export_chart_pngUse this when the user needs an actual image file instead of only a hosted link.
Typical cases:
Default output:
If the channel supports images and visual attachments are useful:
Good response pattern:
I created the chart:
https://pipintama.com/charts/<chart-id>?t=<share-token>
It shows weekly active agents as a line trend.
Image-friendly pattern:
I created the chart and exported a PNG for easy sharing:
Viewer: https://pipintama.com/charts/<chart-id>?t=<share-token>
PNG: https://api.pipintama.com/mcp-chart-exports/<chart-id>.png?theme=light
Only use live Pipintama URL patterns.
Valid:
https://pipintama.com/charts/<chart-id>https://pipintama.com/charts/<chart-id>?t=<share-token>https://api.pipintama.com/mcp-chart-exports/<chart-id>.png?theme=lightInvalid:
https://cdn.pipintama.com/charts/<chart-id>.pnghttps://pipintama.com/chart/<chart-id>pie for long category listsradar when a bar chart would communicate more clearly