Use this skill when the user would benefit from a hosted chart instead of only plain text.
Primary MCP endpoint:
https://api.pipintama.com/mcp
Access model:
Authorization: Bearer or x-api-key
This skill requires a Pipintama API key.
The agent must:
Health check:
https://api.pipintama.com/mcp-health
Primary tools:
list_chart_modes
create_chart
get_chart
share_chart
set_chart_visibility
update_chart
export_chart_png
Use 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 sequence
bar: category comparison or ranking
pie: part-to-whole distribution with a small number of slices
radar: multidimensional profile comparison
Prefer the simplest correct mode. Do not use pie for long lists or precise trend reading.
line
Use when:
Rules:
bar
Use when:
Rules:
pie
Use when:
Rules:
radar
Use when:
Rules:
shared
public only when the user explicitly wants an open link
private only when the user explicitly asks for restricted access
create_chart
Use 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_chart
Use this when the user asks to inspect or retrieve an existing chart.
share_chart
Use this when a chart should be opened through a tokenized share link.
set_chart_visibility
Use this when the user explicitly asks to make a chart private, shared, or public.
update_chart
Use this when the user wants to refine an existing chart instead of creating a new one.
Typical cases:
export_chart_png
Use 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/
https://pipintama.com/charts/?t=
https://api.pipintama.com/mcp-chart-exports/.png?theme=light
Invalid:
https://cdn.pipintama.com/charts/.png
https://pipintama.com/chart/
pie for long category lists
radar when a bar chart would communicate more clearly
共 1 个版本