Skip to main content
Glama
johnnyclem

hypervault-mcp

by johnnyclem

create_task_board

Create a shared task board with both an interactive page and a versioned task list, giving the user live visibility into multi-step work.

Instructions

Create a universal task board — a shared, versioned task list that you and the user work from together.

One call creates both halves: a JSON data artifact (tasks-{project}) that you sync through with the other task_* tools, and an interactive board page (taskboard-{project}) the user opens to watch and steer the work live. The board URL is the deliverable — after creating one, tell the user to open board.url; the data artifact isn't meant to be read by humans.

Use this at the start of any multi-step piece of work the user will want visibility into. Seed it with the plan you already have — passing tasks up front is much better than creating an empty board and adding tasks one call at a time.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tasksNoOptional initial tasks, e.g. [{"id": "epic-1", "title": "Firmware", "type": "epic"}, {"title": "Bring up I2S", "parent": "epic-1", "priority": "high"}]. Per task: `title` (required), `type` ("task" or "epic"), `parent` (an epic's id), `id` (yours, if you want to reference it in the same call), `priority`, `description`.
titleYesHuman-friendly board title (e.g. "Eurorack choir firmware").
stagesNoOptional column names for the board page (e.g. ["Backlog", "Building", "Review", "Done"]).
projectNoOptional project id/slug (e.g. "eurorack-choir"). Derived from the title when omitted; it's what every other task_* tool takes as `project`.
visibilityNo"private" (default) or "public".private

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the transparency burden. It discloses that one call creates both a data artifact and a board page, that the data artifact is not meant for humans, and that the board is 'versioned'. It could mention permission or conflict behavior, but for a creation tool this is strong disclosure.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise and front-loaded: purpose first, then artifact mechanics, then usage guidance. Every sentence provides distinct value, with no redundancy or filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (dual artifacts, 5 params, output schema) and lack of annotations, the description fully covers the key context: what is created, what the deliverable is, how to use it, and how it relates to sibling tools. The output schema covers return details, so no need to describe those.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with good per-parameter descriptions, so the baseline is 3. The tool description adds strategic usage context for the `tasks` parameter (seed with plan up front), which enriches semantics beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool creates a 'universal task board' and explains it produces two artifacts: a JSON data artifact and an interactive board page. It explicitly names the deliverable (`board.url`), which distinguishes it from sibling task tools like `task_create` and `list_task_boards`.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides explicit when-to-use guidance: 'Use this at the start of any multi-step piece of work the user will want visibility into.' It also advises seeding with tasks rather than creating an empty board, and references other task_* tools, implicitly distinguishing this from incremental task creation.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/johnnyclem/hypervault-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server