Skip to main content
Glama
growing-pai-git

MCP Teamleader Focus

teamleader_get_task

Retrieve detailed information for a specific task by its ID. Use this to access task details for reporting, updates, or workflow management.

Instructions

Get detailed information about a specific task.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesThe task ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.2

TDQS

A3.6/5.0
Behavior2/5

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

There are no annotations, so the description carries the full burden of behavioral disclosure. It states that detailed information is returned, but it does not describe what fields the 'detailed information' contains, whether the response includes nested objects, or how errors are handled. For a read tool, some indication of return shape would add value beyond the one-line purpose.

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 a single front-loaded sentence with no filler or redundancy. Every word contributes to conveying the operation clearly and efficiently.

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 get-by-id tool with one well-documented parameter, the description is mostly complete: it identifies the resource, the operation, and the required identifier. The lack of an output schema means a bit more detail about the returned 'detailed information' would improve completeness, but the core invocation path is fully covered.

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 input schema covers 100% of parameters with 'id' described as 'The task ID', so the schema already documents the parameter fully. The description adds no additional meaning beyond what the schema provides, which matches the baseline of 3 for high schema coverage.

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 uses a specific verb and resource ('Get detailed information about a specific task'), making it clear this is a read operation targeting one task. It is easily distinguishable from siblings like teamleader_list_tasks, teamleader_create_task, and teamleader_update_task because it explicitly targets a specific existing task and requests details.

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 'about a specific task' implies this should be used when you need details for one task rather than a list, but it does not explicitly contrast with teamleader_list_tasks or state when not to use it. The usage context is inferable but not directly stated.

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

Deploy Server

Other Tools