Skip to main content
Glama
stackia
by stackia

Unset Chat Message Reaction

unset_chat_message_reaction
Idempotent

Remove an emoji or named reaction from a chat message by providing chat ID, message ID, and reaction type.

Instructions

Remove a reaction from a message in a chat conversation.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
chatIdYesChat ID
tenantIdNoTarget tenant ID from list_tenants. Omit only when a default is configured or exactly one tenant is connected. Resource IDs belong to this tenant.
messageIdYesMessage ID to remove reaction from
reactionTypeYesReaction type to remove - Unicode emoji (e.g., "👍") or named reaction (e.g., "like", "heart")

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.1

TDQS

A3.8/5.0
Behavior3/5

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

Annotations already indicate readOnlyHint=false and idempotentHint=true, so the description need not restate mutation or idempotency. It adds no extra behavioral details such as what happens when the reaction is not present or whether the operation is silently idempotent. The description aligns with the annotations and adds minimal context beyond the obvious.

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 a single, front-loaded sentence with zero filler. It states the action and the object clearly without redundant phrasing.

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 simple, low-complexity operation with full schema coverage and idempotency already declared in annotations, the description is sufficient. It identifies the operation and the domain (chat), and the absence of an output schema places no additional burden on the description. Slightly more detail about no-op behavior would push it higher, but it is complete enough for correct 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 each parameter already has a clear description. The tool description itself does not add parameter-level semantics beyond what the schema provides, so the 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?

The description 'Remove a reaction from a message in a chat conversation' uses a specific verb ('remove') and resource ('reaction from a message'), and the phrase 'chat conversation' distinguishes it from related channel-message tools. It is immediately clear what the tool does and how it differs from set_chat_message_reaction and unset_channel_message_reaction.

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

Usage Guidelines3/5

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

The description implies usage: use this when removing a reaction from a chat message. However, it does not explicitly mention when not to use it or point to alternatives like unset_channel_message_reaction for channel contexts. The naming convention provides a hint but no direct guidance.

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