Skip to main content
Glama
crunchtools

mcp-slack-crunchtools

by crunchtools

slack_get_thread_replies

Retrieve replies in a Slack thread by providing channel ID and thread timestamp. Returns paginated thread messages to view full conversation context.

Instructions

Get replies in a Slack message thread.

Args: channel_id: Channel ID (starts with C, D, or G) thread_ts: Timestamp of the parent message limit: Max replies to return, 1-1000 (default: 100) cursor: Pagination cursor from previous response oldest: Only replies after this timestamp latest: Only replies before this timestamp inclusive: Include messages at oldest/latest boundary

Returns: List of thread messages with pagination metadata

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
cursorNo
latestNo
oldestNo
inclusiveNo
thread_tsYes
channel_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A3.9/5.0
Behavior3/5

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

With no annotations supplied, the description carries the full burden of behavioral disclosure. It communicates a read-only 'Get' operation and describes pagination metadata and timestamp-filter behavior, but it does not mention authentication requirements, rate limits, error behavior, or side-effect caveats.

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 front-loaded with a one-sentence purpose, followed by a tight Args block and a Returns line. There is no filler, and every line adds information not already obvious from the schema.

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 7-parameter tool with an output schema, the description documents all parameters and the return shape including pagination metadata. It lacks broader invocation context such as error cases or prerequisites, but it is functionally complete enough for an agent to select and call the tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, and the description compensates fully. Every parameter receives plain-language meaning: channel_id prefix, thread_ts as parent timestamp, limit range and default, cursor provenance, oldest/latest semantics, and inclusive boundary behavior.

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 opens with a specific verb+resource: 'Get replies in a Slack message thread.' It clearly identifies the tool's object (thread replies) and distinguishes it from channel history or search by naming the thread-specific resource, but it does not explicitly differentiate it from sibling tools in text.

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 purpose statement and required thread_ts parameter imply the use case: fetch replies to a specific parent message. However, the description does not explicitly state when to prefer this tool over alternatives like slack_get_channel_history or slack_search_messages, nor does it provide any exclusions.

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