Skip to main content
Glama
priyanshu-arya

topmate-mcp

delete_service

Permanently delete a service from a Topmate profile. Requires explicit confirmation after the user has agreed to remove the specified service.

Instructions

Delete a service from the Topmate profile. Destructive and irreversible — set confirm=true only after you've told the user exactly which service (by title) you're about to delete and they've agreed.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
confirmYesMust be explicitly true to actually perform the deletion
serviceIdYesThe Topmate service ID to delete

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.4/5.0
Behavior5/5

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

With no annotations provided, the description fully discloses that the operation is destructive and irreversible, and explains the safety precondition for setting confirm=true.

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 brief, direct, and well-structured, with the essential safety caveat included without unnecessary detail.

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?

The description covers the key safety and usage context for a destructive operation. It does not mention output or return behavior, but that is not essential for a simple deletion tool and the core context is complete.

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?

The schema already provides clear descriptions for serviceId and confirm, so the description adds little beyond restating the confirm requirement. Baseline score of 3 is appropriate.

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?

Clearly states the action (delete), the resource (service), and the context (Topmate profile), distinguishing it from sibling tools like get_service, create_service, and update_service.

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?

Provides explicit instructions about the confirm parameter and the required user consent before deletion, which is critical usage guidance. It does not explicitly contrast with alternatives, but the purpose statement makes the intended use clear.

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