Skip to main content
Glama
FokkeZB
by FokkeZB

advance_world_time

Fast-forward the simulated world by days, hours, or months to observe accumulated changes and future outcomes.

Instructions

Travel forward in time by a specified duration. The entire world advances to the new time period, allowing you to see future states, outcomes, and changes across all systems. Use this when you want to observe long-term results (e.g., "check if plants survived after 2 weeks", "see home state after 6 months"). After advancing time, all subsequent action executions will operate in the new time period and reflect the accumulated changes that occurred.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
daysNoNumber of days to advance
hoursNoNumber of hours to advance (can be fractional)
monthsNoNumber of months to advance (approximated as 30 days each)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.4/5.0
Behavior5/5

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

With no annotations, the description carries the full burden and does so well: it discloses that the entire world advances, that the change persists, and that all subsequent action executions will operate in the new time period with accumulated changes. This is exactly the kind of side-effect context an agent needs.

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 front-load the core action, then give usage examples, then state the crucial persistence side effect. Every sentence earns its place with no wasted words.

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?

For a simple three-parameter tool with no output schema, the description covers what it does, when to use it, and the important state-changing consequence. It leaves minor ambiguity about whether at least one duration parameter must be supplied, since no parameters are required by the schema.

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?

The schema already documents all three parameters with full coverage (days, hours, months), so the description need not repeat them. It adds no further semantic detail about units or combination rules; the baseline of 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?

The description opens with a specific verb and resource ('Travel forward in time... entire world advances') and clarifies the result is observing future states. This makes it clearly distinct from siblings like get_world_time (reading current time) and execute_action (taking an action), even without naming them.

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?

It explicitly says when to use the tool ('Use this when you want to observe long-term results') and provides concrete examples for 2 weeks and 6 months. It does not explicitly name alternative tools or exclusion cases, so it falls just short of a 5.

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