Skip to main content
Glama

get_simulation_status

Read-only

Return an overview of every simulation run for an idea: Time Machine sessions, Arena Duels, Survival Mode and Founder Simulations with their scores and status. Use it to poll async simulations and see what has finished. Read-only and free; pass an ideaId you own.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
ideaIdYesThe idea ID

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYesThe tool result rendered as human and AI readable text or markdown.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "$schema": "http://json-schema.org/draft-07/schema#",
      +  "additionalProperties": false,
      +  "properties": {
      +    "result": {
      +      "description": "The tool result rendered as human and AI readable text or markdown.",
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "result"
      +  ],
      +  "type": "object"
      +}
  2. First observed

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, and the description adds 'Read-only and free' plus 'pass an ideaId you own'—extra context about cost and ownership. It also discloses what the response covers (scores and status for each simulation type), going beyond the annotation.

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?

Two sentences, no wasted words. The first sentence front-loads the core purpose and enumerates result categories; the second provides usage guidance and constraints. Efficient and well-structured.

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?

For a simple getter with one parameter and an output schema, the description is complete. It covers what the tool returns, how to use it for polling, and the ownership constraint, leaving no significant gaps.

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?

With 100% schema coverage, the baseline is 3. The description adds the meaningful constraint 'pass an ideaId you own', which is not present in the schema description. This clarifies the ownership requirement beyond the plain 'The idea ID'.

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 verb 'Return' and the resource 'an overview of every simulation run for an idea', enumerating specific simulation types. It distinguishes itself from sibling run_* tools by focusing on status retrieval, making the tool's role obvious.

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?

Explicitly guides usage: 'Use it to poll async simulations and see what has finished.' This tells the agent when to use the tool after initiating simulations. It does not explicitly mention alternatives or when-not-to-use, but the guidance is clear enough for a polling tool.

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.

Resources