Pipintama Boards
by @davidk2yoyo
Create, fetch, share, or change visibility for hosted Pipintama Boards through the MCP server. Use when a user needs a mindmap, flowchart, kanban board, or a...
clawhub install pipintama-boardsπ About This Skill
name: pipintama-boards description: Create, fetch, share, or change visibility for hosted Pipintama Boards through the MCP server. Use when a user needs a mindmap, flowchart, kanban board, or architecture map, and the right output is a hosted visual board link instead of only prose.
Pipintama Boards
Use this skill when the user would benefit from a hosted visual board instead of only plain text.
Primary MCP endpoint:
https://api.pipintama.com/mcpAccess model:
Authorization: Bearer or x-api-keyHealth check:
https://api.pipintama.com/mcp-healthPrimary tools:
list_board_modescreate_boardget_boardshare_boardset_board_visibilityupdate_boardexport_board_pngWhen to use this skill
Use Boards when the user asks for:
Do not use Boards when:
Core workflow
1. Understand the user request and decide whether a hosted board is useful.
2. Choose the simplest correct board mode.
3. Build a concise board title.
4. Preserve the user intent in source_text instead of rewriting the task into something unrelated.
5. Default visibility to shared unless the user explicitly wants public or private.
6. Do not pass workspace_id unless the user explicitly provides one. Let the authenticated API key determine the workspace.
7. Call the MCP tool that matches the job.
8. Return the hosted viewer URL first.
9. Add one short sentence explaining what the board contains.
Mode selection
mindmap: concept exploration, brainstorming, clustering ideasflowchart: processes, approvals, decisions, yes/no branchingkanban: tasks grouped by stage, backlog/doing/review/done planningarchitecture: services, databases, integrations, gateways, system mapsPrefer the simplest correct mode. Do not use architecture for a human workflow. Do not use kanban for a concept breakdown.
Mode-specific rules
mindmap
Use when:
Rules:
flowchart
Use when:
Rules:
kanban
Use when:
Rules:
architecture
Use when:
Rules:
Visibility rules
sharedpublic only when the user explicitly wants an open linkprivate only when the user explicitly asks for restricted accessIf a board needs to be shareable and is not already shared, call share_board.
Tool usage
create_board
Use this for the first board creation.
Expected inputs:
{
"title": "Approval Flow",
"board_type": "flowchart",
"source_text": "User submits a request. System validates the payload. If the request is valid, create the board and notify the user. If the request is invalid, return an error and ask for correction.",
"visibility": "shared"
}
get_board
Use this when the user asks to inspect, retrieve, or reason about an existing board.
share_board
Use this when a board should be opened through a tokenized share link.
set_board_visibility
Use this when the user explicitly asks to make a board private, shared, or public.
update_board
Use this when the user wants to refine an existing board instead of creating a new one.
Typical cases:
Expected inputs:
{
"board_id": "cmndns0hn0001o401md5okzju",
"board_type": "flowchart",
"source_text": "User submits request. Validate request. If valid, create the board. If invalid, ask for correction.",
"note": "Tighten the wording and preserve yes/no branching."
}
export_board_png
Use this when the user needs an actual image file instead of only a hosted link.
Typical cases:
Expected inputs:
{
"board_id": "cmndns0hn0001o401md5okzju",
"theme": "light"
}
Output format
Default output:
1. hosted viewer URL 2. one short explanation sentence
If the channel supports images and visual attachments are useful:
1. hosted viewer URL 2. PNG export URL 3. one short explanation sentence
Only return raw sceneJson when the user explicitly asks for raw data.
Good response pattern:
I created a flowchart for the approval process:
https://boards.pipintama.com/b/?t=It includes the intake step, validation step, and yes/no branching for success vs correction.
Image-friendly pattern:
I created the board and exported a PNG for easy sharing:
Viewer: https://boards.pipintama.com/b/?t=
PNG: https://api.pipintama.com/mcp-exports/.png?theme=light
Only use live Pipintama URL patterns.
Valid:
https://boards.pipintama.com/b/https://boards.pipintama.com/b/?t= https://api.pipintama.com/mcp-exports/.png?theme=light Invalid:
https://pipintama.com/board/https://cdn.pipintama.com/boards//export.png Guardrails
architecture for a human workflowkanban for concept explorationupdate_board when the user wants to refine an existing board instead of creating a new oneexport_board_png when the channel benefits from an image attachmentCurrent limits
export_board_pngupdate_board