Skip to main content
Glama
rollounden

rapid-indexer-mcp

by rollounden

Get task status

get_task
Read-onlyIdempotent

Refresh and retrieve a single task's current status and progress counts from the provider, enabling you to monitor completion after task creation.

Instructions

Fetch one task, refreshing its status from the provider first. Returns status (pending/processing/completed/failed) and progress counts. Poll this after creating a task.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
task_idYesRapid Indexer task id (from list_tasks or a create_* result).

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
vipYes
typeYes
titleYes
engineYes
statusYes
progressYes
created_atYes
completed_atYes
dashboard_urlYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, covering the safety profile. The description adds valuable behavioral context: it refreshes the status from the provider (implying a network call) and returns progress counts. This goes beyond the annotations and helps the agent understand side effects and latency.

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?

Two sentences with no waste. The first sentence states the core action and the refresh behavior; the second states the return value and usage. Key information is front-loaded, and every clause earns its place.

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?

The tool is simple with one parameter, and the output schema is present, so return values are already documented. The description covers the refresh behavior and the polling use case. It doesn't mention error cases (e.g., task not found), but for a read-only, idempotent tool this is a minor gap. Overall it is complete enough for an agent to call it correctly.

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 has 100% coverage, with a clear description for task_id referencing list_tasks or create_* results. The tool description adds no additional parameter information beyond that, so the baseline of 3 is appropriate. The description does not need to restate what the schema already explains.

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 'Fetch' and resource 'one task', clearly distinguishing it from list_tasks (which returns many tasks). It also mentions refreshing status, which sets it apart from a simple cache read. Siblings like get_task_links are clearly different, so an agent can select this tool without ambiguity.

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

Usage Guidelines4/5

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

The description provides an explicit usage context: 'Poll this after creating a task.' This tells the agent when to use it. It doesn't name alternatives or exclusions, but the 'one task' scope and the presence of siblings like list_tasks make the intended usage clear. Slight deduction for not explicitly stating when not to use it (e.g., for listing).

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