Skip to main content
Glama

Delete a collection

steam_collection_delete

Permanently delete a Steam collection while preserving its games. Use dry_run to preview affected games; confirm required.

Instructions

Delete a collection. DESTRUCTIVE: the collection and its id are gone, and recreating it produces a NEW id. The games themselves are untouched, and Steam's collection files are backed up first. Requires confirm=true. Run with dry_run=true first to see exactly which games would lose their membership.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idNoCollection id. Ids are opaque and may contain "+" and "*" (e.g. "uc-8qBpJj1*+Borh") - pass them back exactly as given.
nameNoExact collection name. Alternative to id.
confirmYesMust be true. Acknowledges the destructive effect described in this tool's summary.
dry_runNoReport what would be deleted without deleting anything.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.6/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 behavioral burden. It clearly discloses that the collection and its id are permanently gone, that recreating it yields a new id, that games are unaffected, and that Steam backs up collection files. This is strong, safety-critical transparency.

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 front-loaded with the operation and packs warnings plus the safe invocation sequence into three short sentences. Every clause adds essential information; there is no filler.

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 destructive tool with no annotations and no output schema, it covers consequences, backup behavior, and the dry_run/confirm workflow well. The main gap is that it never explicitly says the collection must be identified via id or name, which is notable because confirm is the only required property in the schema.

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

Parameters4/5

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

The schema already documents all four parameters, providing a solid baseline. The description adds meaningful context about id lifetime—deleted collection ids are not reused—which goes beyond the schema, and it reinforces the roles of confirm and dry_run.

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 object, 'Delete a collection', and immediately distinguishes this from sibling membership tools by noting the games themselves are untouched. There is no ambiguity about the resource acted on.

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 explicit safety steps: set confirm=true and run dry_run=true first to preview what will happen. It doesn't explicitly compare against alternatives like steam_collection_remove_games, but the deletion use case is clear from the context.

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