Skip to main content
Glama

pin_message

Pin a specific Slack message to a channel by providing the channel ID and message timestamp.

Instructions

Pin a message in a Slack channel.

Input Schema

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

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.8

TDQS

B3.3/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 states the action but does not disclose side effects, permission requirements, idempotency, reversibility, or what happens if the message is already pinned. This is a mutating operation with no extra context.

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 efficient sentence with no wasted words. It is front-loaded with the action and resource, which is appropriate for a simple tool.

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 description is minimally sufficient for a simple two-parameter tool with full schema coverage. However, with no annotations and no output schema, it leaves gaps around permissions, error behavior, and whether pinning is idempotent, so it is not fully complete.

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%, and both parameters (channel, ts) are already documented in the schema. The description adds no additional parameter meaning, 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.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Pin') with a clear resource ('a message in a Slack channel'), making the tool's function immediately obvious. It also distinguishes itself from siblings like unpin_message and send_message by naming the exact action.

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 versus alternatives. It does not mention unpin_message as the counterpart, nor any conditions or prerequisites such as needing the message to exist in the channel or having permission to pin.

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