Skip to main content
Glama

tenki_get_sandbox

Read-onlyIdempotent

Fetch a sandbox's current state and metadata with its session ID to check status and configuration.

Instructions

Fetch a sandbox's current state and metadata.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
session_idYesSandbox session id (UUID), from tenki_create_sandbox or tenki_list_sandboxes.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.0

TDQS

B3.4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is fully covered. The description adds the scope of what is fetched (state and metadata) but no deeper behavioral context, such as what 'state' entails or how it relates to list_sandboxes output. No contradiction with 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?

A single, front-loaded sentence with zero filler. Every word contributes meaning for a simple getter tool; nothing is redundant with the name or schema.

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 read-only getter with one well-documented parameter and rich annotations, the description adequately covers purpose and return scope. It could add a note about what fields 'state' includes, but nothing critical is missing for an agent to invoke it correctly.

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%: the single session_id parameter is documented with type, format (UUID), and provenance (from tenki_create_sandbox or tenki_list_sandboxes). The description adds no parameter-level meaning, so the baseline 3 applies.

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 uses a specific verb ('Fetch') and resource ('a sandbox') and names the return scope ('current state and metadata'). This distinguishes it from get-resource siblings like tenki_get_snapshot or tenki_get_volume, though it does not explicitly differentiate from tenki_list_sandboxes.

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?

The description provides no when-to-use guidance, no alternative tools, and no exclusions. The intended usage is only weakly implied by the session_id parameter provenance in the schema, not stated in the description itself.

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

Deploy Server

Other Tools