S

Knowledge Pack Files

Slack Workspace Knowledge Pack Files

Browse the source files that power the Slack Workspace MCP server knowledge pack.

Available free v1.0.0 Browser
$ sidebutton install slack.com
Download ZIP
slack_respond.yaml
908 B
schema_version: 1
version: "1.0.0"
last_verified: "2026-02-08"
id: slack_respond
title: "Respond to Message"
description: "Generates a contextual response to a Slack message. Pure utility — the response tone and content are shaped by the injected role context."
category:
  level: primitive
  domain: ops
  reusable: true
params:
  message:
    type: string
    description: "The message to respond to"
  reporter:
    type: string
    description: "Who sent the message"
    default: "User"
  channel:
    type: string
    description: "Source channel"
    default: "general"
steps:
  - type: llm.generate
    prompt: |
      Write a brief, helpful response (2-3 sentences) to this message from {{reporter}} in #{{channel}}:

      "{{message}}"

      Respond naturally based on who you are and what you can help with.
    as: response

  - type: control.stop
    message: "DRAFT_RESPONSE: {{response}}"