Skip to main content
Glama

list_config_versions

Read-onlyIdempotent

Retrieve all configuration versions with their IDs, payloads, updaters, and timestamps to audit changes or compare revisions before updating or deleting a config.

Instructions

List every version of a config with version_id, structured config payload, updater, and timestamp. Use this to audit history or compare revisions before update_config or delete_config.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
slugYesConfiguration slug to list versions for

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
okYesWhether the tool call succeeded and returned structured data
dataNoStructured success payload when ok is true
errorNoStructured error payload when ok is false

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.0.1
  2. Removed
  3. First observed

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint=false. The description adds useful behavioral context by specifying the return fields and the exhaustive nature ('every version'), which goes beyond the annotations. It does not contradict 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?

The description is two tightly worded sentences. The core behavior is front-loaded, and the usage guidance is provided efficiently without redundant detail.

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?

Given a single required parameter, a fully described schema, an output schema, and comprehensive annotations, the description is complete. It states what is listed, why to use it, and how it relates to update_config and delete_config. Nothing essential is missing for correct tool invocation.

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 100%, and the single parameter 'slug' has a clear schema description: 'Configuration slug to list versions for.' The description does not add beyond the schema, but with full coverage the schema carries the burden effectively.

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 clearly states a specific action: 'List every version of a config' with explicit returned fields (version_id, structured config payload, updater, timestamp). It differentiates from sibling tools like list_configs by focusing on versions of a single config rather than a list of configs.

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

Usage Guidelines5/5

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

The description explicitly states when to use the tool: 'Use this to audit history or compare revisions before update_config or delete_config.' This gives the agent a concrete decision rule and connects it to the related mutation tools.

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