Skip to main content
Glama
cloin

SemaphoreUI MCP Server

by cloin

get_task

Retrieve full details of a specific Ansible task by providing its project ID and task ID.

Instructions

Get details of a specific task.

Args: project_id: ID of the project task_id: ID of the task to fetch

Returns: Task details

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
task_idYes
project_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.4

TDQS

B3.1/5.0
Behavior2/5

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

No annotations provided. Description does not disclose whether the operation is read-only, any side effects, or authorization needs. Only states 'Get details', which is minimal.

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

Conciseness4/5

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

Description is short but includes redundant Args/Returns block that largely duplicates schema and output schema. Could be trimmed to a single sentence.

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

Completeness3/5

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

Given the simplicity (2 params, output schema exists), the description is minimally viable. It lacks context on prerequisites, relationship to list_tasks, or any behavioral notes.

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

Parameters2/5

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

Schema coverage is 0%. The description repeats parameter names and types ('ID of the project') without adding meaningful context beyond the schema. No elaboration on required formats or constraints.

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 states 'Get details of a specific task' with a clear verb+resource. It distinguishes from siblings like list_tasks and get_task_raw_output.

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?

No guidance on when to use this tool vs alternatives. Among siblings, list_tasks and filter_tasks exist but no mention of situations where get_task is appropriate.

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