Skip to main content
Glama
mazemaze

Eureka Labo Task Management MCP Server

by mazemaze

get_task

Retrieve detailed information and change history for a specific task using its ID.

Instructions

Get detailed information about a specific task, including change history.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
taskIdYesTask ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.6/5.0
Behavior2/5

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

No annotations are provided, and the description does not state whether the operation is read-only, whether authentication is required, or whether any side effects occur. As a 'get' it is likely safe, but this is not explicitly disclosed.

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?

A single, clear, and concise sentence that conveys the tool's purpose without unnecessary words or repetition.

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

Completeness4/5

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

For a simple fetch operation, the description is largely complete: it names the target, the action, and the included detail ('change history'). It does not mention output format or error behavior, but these are not critical for such a basic tool.

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

Parameters3/5

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

The schema fully describes the only parameter as 'Task ID', so coverage is 100%. However, the description adds no extra meaning about the format, source, or possible values of taskId 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?

States a specific verb ('get'), a distinct resource ('a specific task'), and the included scope ('change history'). Clearly differentiated from sibling list_tasks, which would be used for multiple tasks.

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

Usage Guidelines3/5

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

The phrase 'specific task' implies use when retrieving one task rather than listing all, but it does not explicitly state when to prefer this over list_tasks or when not to use it.

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