Skip to main content
Glama
KevinInoCol

coppeliasim-mcp

by KevinInoCol

guardar_escena

Save the current CoppeliaSim scene to a .ttt file. By default, it refuses to overwrite an existing file; set overwrite=True to replace it intentionally, preventing accidental loss of other scenes.

Instructions

Guarda la escena actual en un .ttt.

Solo escribe por debajo de COPPELIA_DIRECTORIO_ESCENAS, y se niega a pisar un archivo que ya exista salvo que le pases sobrescribir=True. Escribir encima de la escena de otro es de las pocas cosas que aquí no tienen deshacer, así que hay que pedirlo a propósito.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
rutaYes
sobrescribirNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.4.0

TDQS

A4.8/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 of behavioral disclosure. It states the directory constraint, the overwrite refusal, and the irreversible nature of overwriting another scene, which is critical for a mutation tool. This goes well beyond a generic save statement.

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-loaded with the core purpose followed by necessary safety details. It contains no filler and does not redundantly repeat schema defaults beyond what adds value.

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 2-parameter tool with an output schema, the description is complete: it covers purpose, path scope, overwrite semantics, and undo risk. It does not need to explain return values because an output schema exists.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, but the description compensates by explaining 'sobrescribir=True' as the explicit overwrite opt-in and the ruta constraint as being under COPPELIA_DIRECTORIO_ESCENAS. The meaning of ruta as the target file path is implied by 'Guarda la escena actual en un .ttt'.

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 'Guarda la escena actual en un .ttt', naming a specific verb, resource, and output format. It is clearly distinguishable from siblings like cargar_escena and cerrar_escena, which are load/close operations.

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 gives clear context for use (saving the current scene to a .ttt) and explicit operational guidance: it writes only under COPPELIA_DIRECTORIO_ESCENAS and refuses to overwrite unless sobrescribir=True. However, it does not explicitly name alternatives or when-not-to-use conditions.

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