Skip to main content
Glama

update_message

Edit an existing Slack message by supplying the channel ID, message timestamp, and new text. Replace outdated content directly in Slack.

Instructions

Update/edit an existing Slack message.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tsYesTimestamp of the message to update
textYesNew text for the message
channelYesChannel ID containing the 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

C2.9/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It only restates the mutation (updating/editing) and says nothing about authentication requirements, token behavior, message ownership constraints, or side effects.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is very short and front-loaded, with almost no filler. However, 'Update/edit' is slightly redundant, and the terseness leans toward under-specification rather than efficient completeness.

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?

For a 4-parameter mutation tool with no annotations and no output schema, the description is under-specified. It omits key operational context such as authentication expectations, use_user_token implications, constraints on editable messages, and any failure behavior.

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 parameter-level detail, so the baseline score of 3 applies.

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 uses a specific verb ('Update/edit') and a clear resource ('an existing Slack message'). It distinguishes this from sending or deleting a message by noting it operates on an existing message, but it does not explicitly contrast it with sibling tools like send_message or delete_message.

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 provides no explicit guidance on when to use this tool versus alternatives. The word 'existing' implies it is not for creating or sending new messages, but there are no stated conditions, prerequisites, or exclusions.

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