Skip to main content
Glama

Reach MCP

delete_conversation

DestructiveIdempotent

Permanently delete a LinkedIn conversation. conversation_linkedin_id is the conversation_id returned by list_conversations.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
account_idYesReach id of the LinkedIn account to act on, from list_accounts.
idempotency_keyNoOptional. A key you choose (a UUID is fine) that names this exact call. If you retry with the same key and the same arguments, the first call's result is returned and nothing is done twice on LinkedIn. Reusing a key with different arguments is refused. Keys expire after 24 hours.
conversation_linkedin_idYesConversation (thread) id, as returned by list_conversations.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
deletedNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A3.5/5.0
Behavior3/5

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

Annotations already indicate destructiveHint=true and readOnlyHint=false, so the safety profile is covered. The description adds the 'permanently' qualifier, reinforcing irreversibility, but it does not disclose other behavioral details such as whether messages within the conversation are also deleted or whether the action affects other participants. This is acceptable but not rich beyond the 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 short sentences with no filler. The primary action is front-loaded, and the clarification about conversation_linkedin_id directly supports correct invocation. Every sentence earns its place.

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 delete operation with only three parameters, the description combined with the detailed input schema and annotations is sufficient. The tool's destructive and idempotent nature is captured, all parameters are documented, and the output schema covers return expectations. No important calling context appears missing.

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%, so the schema fully documents account_id, idempotency_key, and conversation_linkedin_id. The description repeats that conversation_linkedin_id comes from list_conversations, which is already in the schema property description. No additional parameter meaning is added beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb and resource: 'Permanently delete a LinkedIn conversation.' It is clear and unambiguous about the operation. However, it does not explicitly distinguish itself from sibling tools like archive_conversation, so the differentiation is implicit rather than explicit.

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

Usage Guidelines2/5

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

The description offers no guidance on when to use this tool versus alternatives such as archive_conversation or star_conversation. It does not state when deletion is appropriate or warn against using it when archiving would suffice. The destructive nature is implied by 'permanently delete' but no explicit usage direction is provided.

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.

Resources