Skip to main content
Glama
simplepush

Simplepush MCP Server

Official
by simplepush

Get the answer to an earlier task

get_task_answer

Retrieve a reply to a sent task or appended subtask by passing its ID, returning the answer or pending status. For photo, voice, or file responses, get the inputId needed to download the attachment.

Instructions

Check whether a task sent with send_task, or a subtask added with append_subtask, has been answered. Pass exactly one of task_id or subtask_id. Returns the answer, or pending if the person has not replied yet; for a subtask the result also names its parent task. A photo, voice or file answer carries its inputId for download_attachment. For the whole task including every subtask, use get_task.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
task_idNoThe tsk_ id returned by send_task.
subtask_idNoThe sub_ id returned by append_subtask.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.7/5.0
Behavior4/5

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

With no annotations, the description carries the behavioral disclosure burden. It explains return states (answer vs. pending), the parent-task naming behavior for subtasks, and the inputId for media attachments. It does not explicitly state that this is a read-only operation, but the verb "Check whether" strongly implies it.

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 compact and every sentence earns its place: purpose, parameter constraint, return behavior, media-attachment note, and alternative routing. The most important scoping information is front-loaded.

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

Completeness5/5

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

Given there is no output schema and no annotations, the description compensates well. It covers invocation constraints, expected return values, the pending state, subtask-specific behavior, media attachment handling, and the relevant sibling alternative. An agent has enough to select and call this tool correctly.

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

Parameters4/5

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

Schema coverage is 100%, so the baseline is 3. The description adds meaningful semantics beyond the schema by explaining the relationship between task_id/subtask_id and their originating tools (send_task/append_subtask), and by imposing the crucial exactly-one constraint that the schema itself does not encode.

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 begins with a specific verb ("Check whether") and names the exact resource (the answer to a task sent via send_task or a subtask appended via append_subtask). It distinguishes itself from get_task by clarifying scope: answer to a single task/subtask vs. whole task including subtasks.

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

Usage Guidelines5/5

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

It explicitly states "Pass exactly one of task_id or subtask_id," which is critical guidance given both parameters are optional in the schema. It also names the alternative tool get_task and gives the exact condition for using it instead: when the whole task including every subtask is needed.

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