plugins marketplace
← All plugins

slack

v0.1.0

Slack channel for Claude Code — messaging bridge with built-in access control. Manage pairing, allowlists, and policy via /slack:access.

Claude Code2 skills1 MCP serverstdio

0updated 3 months ago

Source

git clone https://github.com/Reef-Digital/claude-code-slack

Clone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.

Layout

slack/
├── .claude-plugin/plugin.json
├── skills/access/SKILL.md
├── skills/configure/SKILL.md
└── .mcp.json

Skills2

accessskills/access/SKILL.md

Manage Slack channel access — approve pairings, edit allowlists, set DM/group policy. Use when the user asks to pair, approve someone, check who's allowed, or change policy for the Slack channel.

configureskills/configure/SKILL.md

Set up Slack channel tokens and check channel status. Use when the user provides Slack bot tokens or asks about channel configuration.

MCP servers1

slackstdio
command
bun
args
run --cwd ${CLAUDE_PLUGIN_ROOT} --shell=bun --silent start

MCP configuration uses runtime-provided plugin path placeholders such as ${PLUGIN_ROOT} or ${CLAUDE_PLUGIN_ROOT}. Review the manifest for the runtime-specific expansion rules.

Manifests1

.claude-plugin/plugin.json
{
  "name": "slack",
  "description": "Slack channel for Claude Code — messaging bridge with built-in access control. Manage pairing, allowlists, and policy via /slack:access.",
  "version": "0.1.0",
  "keywords": [
    "slack",
    "messaging",
    "channel",
    "mcp"
  ]
}