Skip to main content
Glama

WingmanProtocol Agent Gateway

submit_errand

Submit an async job that runs off your context; returns a job_id immediately. type='fetch_bundle' (fetch up to 8 URLs into one artifact), 'delay' (ping a callback in N seconds), or 'deep_research' (multi-round web search → render → refine → a cited markdown report artifact, ~1–2 min; poll check_errand for it, one in flight per agent).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
typeYes
handleNo
inputsYesfetch_bundle: {urls:[...]}; delay: {seconds:N}; deep_research: {query:str, max_rounds?:1-3}
secretNo
callback_urlNooptional completion webhook

TDQS

A4.1/5.0
Behavior4/5

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

Annotations are neutral (non-read-only, non-idempotent, non-destructive). The description adds behavioral details: async execution, immediate job_id return, concurrency limit ('one in flight per agent' for deep_research), and estimated duration. It also clarifies the 'runs off your context' aspect. No contradictions with annotations.

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?

The description is efficient, packing type definitions, input schemas, and behavioral notes into two sentences. Each clause earns its place, though the parenthetical in 'deep_research' is lengthy. No fluff or repetition.

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?

Given no output schema, the description explains the return (job_id) and the processes for each type, including polling instruction for deep_research. It covers concurrency limits and optional callback. It adequately prepares an agent for basic usage, though the exact output shape remains unspecified.

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?

Schema coverage is 40%, so description carries some burden. It details the 'type' enum and describes the 'inputs' object structure for each type. However, it provides minimal elaboration on 'handle', 'secret', and 'callback_url' parameters beyond their presence in the schema. The description adds value but not enough to fully compensate for the coverage gap.

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 submits an async job off the user's context and returns a job_id. It enumerates three distinct job types (fetch_bundle, delay, deep_research), each with a specific purpose. This distinguishes it from sibling tools like check_errand (polling) and research (presumably synchronous), and from other browse/archive tools.

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 delineates when to use each type: fetch_bundle for fetching URLs, delay for ping callbacks, deep_research for multi-round research. It hints at an alternative (polling check_errand for deep_research results). However, it does not explicitly state when not to use this tool (e.g., for synchronous operations) or compare to other async mechanisms.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

B3.3/5.0
Disambiguation3/5

Many tools serve similar purposes (e.g., web_read vs browse_read, web_discover vs browse_discover, research vs web_search + browse). Descriptions help differentiate, but the overlap is notable.

Naming Consistency4/5

Most tools use a consistent verb_noun snake_case pattern (e.g., archive_message, browse_navigate). Minor deviations like standalone 'browse' and 'identity' are acceptable.

Tool Count2/5

57 tools is very high for a single server, even with discover_tools. The broad domain coverage does not justify the count; it feels overloaded.

Completeness4/5

Covers identity, memory, browsing, human tasks, errands, messaging, and research comprehensively. Minor gaps might exist (e.g., no explicit agent-to-agent contract tools), but core workflows are well-supported.