Skip to main content
Glama

reply_in_thread

Post a reply to an existing Slack thread by providing the channel ID, parent message timestamp, and reply text. Optionally send as the authenticated user instead of the bot.

Instructions

Reply to a message in a Slack thread.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
textYesReply text
channelYesChannel ID containing the thread
thread_tsYesTimestamp of the parent message
use_user_tokenNoSend 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

B3.4/5.0
Behavior2/5

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

No annotations are provided, so the description alone must carry behavioral disclosure. It only states the basic action and does not mention auth behavior, bot vs. user token differences, rate limits, errors, or what happens when the reply is posted.

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 one short sentence with no filler. It front-loads the action and context efficiently.

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

Completeness2/5

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

This is a mutating tool with no annotations and no output schema, yet the description explains none of the operational context such as required permissions, token behavior, or expected response. The schema covers parameter names, but the description still leaves important behavioral gaps unaddressed.

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 parameters are already well documented in the schema. The description adds no extra parameter semantics beyond what the schema provides, making the baseline score of 3 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 uses a specific verb ('Reply') and a clear resource ('a message in a Slack thread'), which distinguishes it from sibling tools like send_message or get_thread_replies. It immediately tells the agent the exact action and scope.

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 thread context implies when this tool should be used, but there is no explicit guidance about when to choose it over send_message or how to obtain the required thread_ts. No alternatives or exclusions are mentioned.

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