Skip to main content
Glama

unpin_message

Remove a pinned message from a Slack channel by providing the channel ID and message timestamp.

Instructions

Unpin a message from a Slack channel.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tsYesMessage timestamp to unpin (e.g. '1234567890.123456')
channelYesChannel ID containing the message

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.8

TDQS

B3.1/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 basic action and does not explain side effects, permissions required, behavior when the message is not pinned, or the expected response. This is a significant gap for a mutation tool.

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, direct sentence with no filler. It is front-loaded with the core verb and resource, and every word contributes to the meaning.

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?

The tool is simple with two well-documented parameters, so the description is minimally sufficient for invocation. However, it lacks usage context, alternative tool routing, and behavioral caveats, leaving clear gaps for an agent deciding between this and closely related tools.

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?

The input schema provides 100% description coverage for both parameters, so the schema already explains channel and ts. The description adds little beyond the phrase 'from a Slack channel,' which does not materially enrich the parameter semantics. Baseline 3 is appropriate.

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 the specific verb 'Unpin' with a clear resource ('a message from a Slack channel'), so an agent can tell what action is performed. However, it does not explicitly differentiate itself from siblings like pin_message, though the inverse relationship is evident from the verb.

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 gives no guidance on when to use this tool instead of alternatives such as pin_message, delete_message, or update_message. There is no mention of prerequisites, exclusions, or the fact that the message must already be pinned.

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