Skip to main content
Glama
Palgenius

Claude Code ⇄ Slack

by Palgenius

slack_progress

Post and update a self-rewriting Slack checklist for multi-stage jobs, replacing scattered progress messages with one live board that tracks each step.

Instructions

A live checklist in Slack, kept to one message that rewrites itself as the work moves. Call once with steps to post the board and get back a ts; call again with that ts and update to change a step. Use it for any job with several stages — it replaces a run of "doing X now" messages with one line per step that people can glance at. Statuses: pending, active (the one running now), done, failed, skipped.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tsNoTimestamp of an existing board, as returned by the first call. Omit to create a new one.
stepsNoThe full checklist. Give plain strings to start every step pending, or objects {text, status} to set them explicitly. Required when creating; on an existing board this replaces the list outright.
titleNoHeading above the checklist, e.g. "Deploy". Optional.
footerNoA line under the checklist — a result, a link, a note. Optional.
updateNoChange individual steps without resending the list. Each entry is {step, status, text}, where `step` is a 0-based index or any substring of that step's text.
advanceNoFinish whatever is active and start the next pending step. The usual call between stages — it cannot leave the board looking stalled the way marking a step done and forgetting the next one does.
channelYesThe Slack channel ID the board lives in
thread_tsNoPost the board inside a thread. Only used when creating it.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.0.0

TDQS

A3.9/5.0
Behavior4/5

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

With no annotations, the description carries the full burden and does well: it discloses the single-message rewrite model, the ts handoff between calls, and the meaning of every status. It omits permissions/auth needs, rate limits, and failure behavior, which keeps it from a 5.

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?

Three sentences, front-loaded with the core concept before the mechanics and the status vocabulary. Nearly every clause earns its place; only the trailing status enumeration is somewhat redundant with the schema enums.

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 an 8-parameter stateful tool with no output schema and no annotations, the description covers the lifecycle and statuses adequately, and the remaining parameters (title, footer, advance, thread_ts) are well documented in the schema. Minor gaps remain around permissions and error cases.

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 schema already documents ts, steps, update, advance, title, footer, thread_ts and channel. The description reinforces the ts/steps/update relationship but adds no syntax or constraints beyond the schema, so the baseline 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 gives a concrete, vivid verb+resource: a live Slack checklist kept to one self-rewriting message, plus the create/update lifecycle. It is clearly not a generic message tool, though it never names a sibling (e.g. update_slack_message) to sharpen the distinction.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It states the calling pattern explicitly ('call once with steps... call again with that ts and update') and the intended context ('any job with several stages', replacing a run of 'doing X now' messages). No explicit when-not or named alternative, so it stops short of a 5.

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