Skip to main content
Glama

get_task

Fetch a complete Vikunja task using its ID, returning the full plain-text description so agents can access all task details for project management.

Instructions

Una tarea con su descripción completa (texto plano).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
task_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

D1.9/5.0
Behavior2/5

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

With no annotations, the description carries the full burden, but it only hints at return content: 'complete description (plain text).' It does not disclose whether the operation is read-only, what happens if the task is missing, or how the response is structured.

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

Conciseness2/5

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

The description is very short, but brevity here is under-specification rather than effective conciseness. It lacks the core verb and any actionable instruction, so the single sentence does not fulfill the purpose of a tool description.

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

Completeness2/5

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

Although the tool is simple with one required parameter, there is no output schema or annotations, and the description does not state that get_task retrieves a task by its ID. The return-format hint about plain text helps only slightly; the description is not complete enough to support confident invocation.

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

Parameters1/5

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

Schema description coverage is 0%, and the description never mentions task_id or explains how the identifier is used. The agent receives no additional meaning beyond the parameter name and type already present in the schema.

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

Purpose2/5

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

The description is a noun phrase—'A task with its complete description (plain text)'—rather than a statement of what the tool does. It restates the resource implied by the name without using an action verb like 'retrieves' or 'gets', so the purpose is only inferable from the tool name and siblings.

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

Usage Guidelines2/5

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

There is no guidance on when to use get_task versus list_tasks or other sibling tools. No alternatives, conditions, exclusions, or context are provided, so selecting this tool correctly depends entirely on reading the name.

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