Skip to main content
Glama
slaughters85j

SEToolBox MCP Server

Get a result by runId

setoolbox_get_result
Read-onlyIdempotent

Retrieve a run's result file by runId, verbatim, after a timeout or from another session. If absent, returns found false and queued status.

Instructions

Return the result file for a runId, verbatim, if one exists in out/. Use it after a setoolbox_run timeout, or for a run submitted by another session. Returns { "found": false, "queued": boolean } when no result has appeared; queued true means the request is still waiting in in/ for the app.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
runIdYesThe request's runId.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already cover the safety profile (readOnly, idempotent, non-destructive, closed-world). The description adds valuable non-annotation behavior: the not-found return shape { found: false, queued: boolean } and the semantic distinction that queued=true means the request is still in in/. This discloses queued-state semantics the agent cannot infer from annotations.

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?

Three sentences, each earning its place: purpose, when-to-use, and the not-found return shape. Front-loaded with the verb and resource.

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?

Complete for a single-param read tool with no output schema: the description supplies the missing return contract (found/queued) and clearly explains when to call it. Nothing an agent needs is absent.

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 100%, so the runId pattern and description are already documented in the schema. The description adds no format or syntax detail beyond the schema; baseline 3 applies.

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?

States a specific verb (Return) and resource (result file for a runId) with precise scope ('verbatim, if one exists in out/'). Distinguishable from sibling setoolbox_status, which reports state rather than returning file content.

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?

Explicit when-to-use: 'after a setoolbox_run timeout, or for a run submitted by another session.' This routes the agent correctly relative to setoolbox_run and cross-session scenarios.

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