Skip to main content
Glama

add_reaction

Add an emoji reaction to a Slack message by providing the channel ID, message timestamp, and emoji name. Supports reacting as the authenticated user or the bot.

Instructions

Add an emoji reaction to a Slack message.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesEmoji name without colons (e.g., 'thumbsup')
channelYesChannel ID containing the message
timestampYesMessage timestamp
use_user_tokenNoReact as the authenticated user (requires xoxp- user token) rather than the bot

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.8

TDQS

A3.5/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It only restates the basic action and does not mention required scopes/permissions, side effects, behavior when the emoji is invalid, or response/error characteristics.

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?

A single, front-loaded sentence with no filler or redundancy. Every word contributes to understanding the tool's purpose.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple tool with a fully documented schema, this is minimally viable. However, with no annotations and no output schema, the description does not cover authentication context, error cases, or expected result, leaving some operational ambiguity.

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 baseline is 3. The description adds no parameter-level meaning beyond the schema, but the schema already documents channel, timestamp, name, and use_user_token clearly.

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 states a specific verb ('Add'), a clear object ('emoji reaction'), and a resource ('Slack message'). It is immediately distinguishable from related sibling tools like remove_reaction or send_message.

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?

Usage is implied by the action itself: use this when you want to add an emoji reaction. However, the description does not explicitly mention when not to use it or contrast it with alternatives such as remove_reaction, so guidance is only implicit.

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