Skip to main content
Glama

create_snapshot

Save a permanent, timestamped copy of a PowerPoint file before large or risky edits. Snapshots are never overwritten or auto-pruned, retaining a safe restore point; the source file remains unchanged.

Instructions

Save a DTG-stamped permanent copy: YYYYMMDD_HHMM_.pptx (an existing leading DTG in the name is replaced, not stacked), plus an optional short label. Snapshots are the PERMANENT keepers alongside the automatic prev/anchor slots: slots rotate on every mutation, snapshots are never auto-pruned and manage_backups never touches them. Never overwrites (collisions get a numeric suffix). The source file is not modified. Take one before any large or risky editing pass.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
labelNo
dest_dirNo
file_pathYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv1.2.1
    • addedInput schema / additionalProperties
      Added value: +false
  2. First observedv1.0.0

TDQS

A4.2/5.0
Behavior5/5

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

Annotations only state readOnlyHint=false, so the description carries the burden of behavioral detail. It discloses non-obvious behaviors: DTG replacement instead of stacking, numeric suffixes on collisions, no auto-pruning, manage_backups never touching snapshots, and the source file not being modified. These go well beyond the annotations and add significant safety-relevant context.

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 description is front-loaded with the primary purpose and then packs multiple distinct rules into a compact block. Every sentence carries information, though the density makes it slightly harder to parse. It is appropriately sized for the tool's complexity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The main behavior and safety properties are well covered, and since an output schema exists, return values need not be described. However, the dest_dir parameter's meaning and default behavior are absent, which is a noticeable gap. An agent could still call the tool correctly, but not with full confidence about where snapshots land.

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 description coverage is 0%, so the description must compensate. It explains the file_path role and the optional short label, but it never mentions the dest_dir parameter at all. One of three parameters remains semantically unexplained, so the description only partially compensates for the empty schema.

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: 'Save a DTG-stamped permanent copy' and an exact naming format. It also distinguishes itself from siblings by explaining that snapshots are permanent keepers that 'manage_backups never touches,' so an agent can tell it apart from rotation/backup tools without opening schemas.

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?

The description explicitly advises 'Take one before any large or risky editing pass,' giving a clear when-to-use condition. It also contrasts snapshots with automatic prev/anchor slots and manage_backups, which routes an agent away from alternatives. It does not enumerate every sibling exclusion, but the context is strong.

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