Skip to main content
Glama

remove_app

Take down an app published with your key. The app leaves the shelf and its address serves a tombstone. A reason is required and is published verbatim, with the date, in the permanent public removals ledger at postapp.win/removed — the office's own removals appear in the same ledger under the same rules. Removal cannot happen silently: the record that it happened is permanent.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
slugYesThe app's address, without the domain.
reasonYesWhy. This is published.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.7/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 and does so thoroughly: it reveals the app leaves the shelf, the address serves a tombstone, the reason is published verbatim with a date in a permanent public ledger, and the removal record is permanent. This is exemplary transparency about irreversible, public consequences.

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 four sentences, each earning its place: main action, effect on the app, ledger policy, and permanence. It is front-loaded with the primary verb and stays free of filler.

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 no output schema, the description fully covers the action, its public and permanent consequences, and the necessary context. It doesn't explain return values or errors, which isn't essential here.

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 covers both parameters (slug and reason) at 100%, and the description adds significant meaning to the 'reason' parameter by noting it is required and published verbatim in the permanent ledger. It adds nothing new for 'slug,' but the overall enrichment justifies a score above baseline.

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 the tool's function: 'Take down an app published with your key.' This is a specific verb+resource combination that distinguishes it from siblings like publish_app and search_apps, and it clarifies whose apps can be removed.

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 implies when to use the tool (for an app you published) and hints at a prerequisite ('with your key'), but it doesn't explicitly name alternatives or when not to use it. The context is clear enough, though exclusions are absent.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.7/5.0
Disambiguation5/5

Each tool covers a distinct lifecycle action: publish_app creates, search_apps reads, remove_app deletes. There is no overlap in purpose or behavior.

Naming Consistency4/5

All tools follow a verb_noun pattern (publish_app, remove_app, search_apps), but 'search_apps' uses a plural noun while the others use singular, a minor inconsistency.

Tool Count5/5

Three tools are well-scoped for a publish-search-remove library, avoiding redundancy or bloat. Each tool earns its place.

Completeness5/5

The set covers the full lifecycle: publish (with replace capability via the author key), search/list, and remove. No critical operations are missing for the stated purpose.

Resources