Skip to main content
Glama

noetic.simulate

Run private what-if simulations for any entity without persisting changes. Explore hypothetical scenarios and their outcomes within the agent's context network.

Instructions

Private, non-persisted what-if over an entity.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
subjectNo
sessionIdNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

C2.7/5.0
Behavior3/5

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

No annotations are present, so the description must carry the behavioral burden. It adds meaningful context by disclosing the operation is private and non-persisted, but it stops short of explaining authentication needs, side effects, or what the agent receives back. More is expected for a tool name like simulate.

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 definition is a single concise sentence with the key differentiators 'private' and 'non-persisted' front-loaded. It has no padding or redundancy. Brevity is fine here; the real issue is under-specification, which is a separate dimension.

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 no annotations, no output schema, no enumerated defaults, and completely undocumented parameters, the description is too thin. It does not tell the agent how the simulation result is expressed, what formulate the what-if takes, how sessionId matters, or which parameters are required, leaving the caller to guess.

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 coverage is 0% and both subject and sessionId are bare strings with no descriptions. The phrase 'over an entity' loosely associates 'subject' with something being simulated, but sessionId remains completely unexplained. The description does not compensate for the missing schema-level parameter documentation.

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

Purpose3/5

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

The description conveys a hypothetical, non-persisted action over an entity, so an agent can tell it is simulation-oriented rather than a persist or commit tool. However, it never states a concrete verb or what exactly is being simulated, and the phrase 'what-if over an entity' remains vague compared to siblings like noetic.propose or noetic.reason.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no guidance on when to use this tool versus alternatives. The mention of 'private, non-persisted' hints at a safe, temporary experiment, but the description never says 'use this instead of X when...' or gives any exclusions.

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