Skip to main content
Glama

workbench_browser_run

Run a 3D model generation job in your browser, monitor its progress, and automatically download the result when submit is enabled.

Instructions

Upload and configure the full job in one local execution. submit=True generates once and starts local monitoring with automatic download; consumes web quota.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
job_idYes
submitNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.1

TDQS

A3.5/5.0
Behavior3/5

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

With no annotations provided, the description must disclose behavior itself. It does mention that the operation consumes web quota and that submit=True starts local monitoring and automatic download, which is useful. However, it leaves the submit=False behavior implicit, does not state whether the operation is destructive or creates persistent state, and gives no blocking or timeout expectations.

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 two sentences with no wasted words. It front-loads the primary action and then explains the conditional submit behavior and the quota cost, which is optimally compact for the information provided.

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

Completeness3/5

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

The core behavior for a two-parameter tool is present, but there is no mention of return values or result format, no prerequisites, and no guidance on how this relates to the many sibling tools. Given no annotations and no output schema, an agent would still have open questions about what happens after invocation and how to combine this with other workbench steps.

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 description coverage is 0%, so the description must compensate. It explains submit=True well: generates once, starts local monitoring, and auto-downloads. job_id is only surfaced as 'Job Id' in the schema, and the description does not clarify what kind of job reference is valid or whether the job must already be prepared.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states it uploads and configures the full job in one local execution, which identifies a specific combined action. The submit flag adds detail about generate/monitor/download behavior. It does not explicitly name sibling differences, but the phrase 'in one local execution' hints at being a consolidated alternative to multi-step workflows.

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?

Usage context is implied: use this tool for a one-shot full job execution, with submit=True enabling generation, monitoring, and automatic download. However, it never says when to use this instead of related tools such as workbench_submit, workbench_browser_start, or a prepare-then-run sequence, and it omits prerequisites.

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