Skip to main content
Glama

origin_bridge_task_status

Retrieve the status, result, and optional logs for a specific Origin bridge background task using its task ID.

Instructions

Read status, result, or optional recent logs for an Origin bridge background task.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
task_idYes
include_logsNo
log_limitNo
include_resultNo
hostNo
portNo
tokenNo
timeoutNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.7/5.0
Behavior4/5

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

With no annotations, the description carries full burden. It correctly identifies the operation as reading status/result/logs, implying a safe, non-destructive action. However, it omits details on error handling or authentication requirements.

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?

Single sentence, no redundancy, directly states the tool's function. Every word earns its place.

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

Completeness2/5

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

Given 8 parameters and no schema descriptions, the description is too brief. It does not cover parameter purposes, output schema details, or behavior when task_id is invalid, leaving significant gaps for an AI agent.

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 description coverage is 0%, so the description must explain parameters. It only touches on include_result and include_logs, leaving host, port, token, timeout, and log_limit unexplained, which are critical for network configuration.

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 clearly states the tool reads status, result, or optional logs for a single Origin bridge task, differentiating it from siblings like origin_bridge_list_tasks (list all) and origin_bridge_cancel_task (cancel).

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 description implies this tool is for checking a specific task's outcome but does not explicitly state when to use it versus alternatives like list_tasks or submit_task, leaving the agent to infer from context.

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