claude-slack-event-channel-mcp
Forwards Slack events (messages and reactions) into a Claude Code session via Socket Mode.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@claude-slack-event-channel-mcplisten for Slack events and forward messages"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
claude-slack-event-channel-mcp
A one-way (listen-only) Claude Code channel
that forwards Slack events into a Claude Code session. It connects to Slack via Socket Mode,
filters messages and reactions, and pushes them to Claude as <channel> notifications so Claude
can react to things happening in Slack without leaving the terminal.
What is a channel?
A channel is an MCP server that Claude Code spawns as a subprocess and talks to over stdio. Instead of waiting for the user to type, the channel pushes events into the session. One-way channels (like this one) forward alerts, webhooks, or chat messages for Claude to act on; two-way channels also expose a reply tool so Claude can send messages back. This server is one-way: Slack → Claude only.
The channel contract is just three things, all implemented in main.ts:
Declare the capability — the
experimental: { 'claude/channel': {} }key in theMcpServerconstructor is what registers the notification listener and makes this an MCP server a channel.Emit notifications — for each Slack event, the server calls
mcp.server.notification({ method: 'notifications/claude/channel', params: { content, meta } }).Connect over stdio —
mcp.connect(new StdioServerTransport()); Claude Code owns the process.
The instructions string in the constructor is added to Claude's system prompt so Claude knows
what these events mean and that the channel is one-way.
How an event reaches Claude
When a Slack event passes the filters, content becomes the body of a <channel> tag and each
meta key becomes a tag attribute (the source attribute is filled in automatically from the
server's configured name, slack). For example a thread reply arrives in Claude's context as:
<channel source="slack" kind="message" channel="C0123ABC" user="U0456DEF" ts="1718000000.000100" thread_ts="1718000000.000001">
deploy looks stuck, can you check?
</channel>kind="reaction_added" / kind="reaction_removed" events carry a reaction emoji name and the
target ts instead.
Note on
metakeys: keys must be identifiers (letters, digits, underscores only). Keys with hyphens or other characters are silently dropped, which is why this server usesthread_ts, notthread-ts.
Delivery is fire-and-forget: notifications are not acknowledged. If the session hasn't loaded this server as a channel, or org policy blocks it, events are dropped silently with no error. Events that arrive while Claude is busy are queued and delivered together on the next turn.
Related MCP server: Claude Code MCP Server
Requirements
Claude Code v2.1.80 or later (channels are in research preview). On Team/Enterprise plans an admin must enable channels first.
A Slack app with Socket Mode enabled and an App-Level Token (
xapp-...) carrying theconnections:writescope. Subscribe the app to the events you want forwarded (message.channels,reaction_added,reaction_removed, …) and invite it to the target channels.
Install
bun installConfigure
Copy .env.example to .env and fill in the values (loaded via dotenv):
Variable | Required | Description |
| yes | App-Level Token ( |
| no | Comma-separated channel IDs to forward. Empty = all channels. |
| no | Comma-separated user IDs / bot_ids allowed. Empty = allow all. |
Security — this is a prompt injection vector. Every forwarded message becomes Claude's input. Anyone who can post in a watched channel can put text in front of Claude. Leaving
SLACK_ALLOWED_SENDERSempty is only safe for channels that solely trust an alert bot; always set an allowlist when listening to human messages. The server gates on the sender's identity (user/bot_id), not the channel, so membership in a watched channel alone is not enough.
Register with Claude Code
Claude Code launches the server itself — you do not run it standalone. Add it to your MCP config so
Claude Code spawns it as a subprocess. Project-level .mcp.json (relative path):
{
"mcpServers": {
"slack": { "command": "bun", "args": ["./main.ts"] }
}
}For user-level config in ~/.claude.json, use the absolute path to main.ts so it resolves from
any project.
Run during the research preview
Custom channels aren't on the approved allowlist yet, so start Claude Code with the development flag (this bypasses the allowlist for this one entry after a confirmation prompt; org policy still applies):
claude --dangerously-load-development-channels server:slackThe first time, Claude Code asks for consent to use the new server from .mcp.json — select Use
this MCP server. A dim notice under the startup banner confirms the channel is registered. Once
running, posting in a watched Slack channel pushes the event straight into the session.
If events don't arrive, run /mcp in the session to check the server's status; "Failed to connect"
usually means an import/dependency error — check ~/.claude/debug/<session-id>.txt.
Local development
You can run the server directly to verify it connects to Slack (it will throw if SLACK_APP_TOKEN
is missing). Note that outside Claude Code there's no channel listener, so notifications go nowhere —
this is only useful for checking the Socket Mode connection and your filters.
bun run start # or: bun run dev (watch mode)Scripts
Script | Description |
| Run the server. |
| Run with file watching. |
| Biome lint + format (auto-fix). |
| Biome lint only. |
| Biome format (write). |
| TypeScript type check. |
See also
Channels reference — the full channel contract.
Channels — installing and enabling channels.
Working channel implementations (Telegram, Discord, iMessage, fakechat) — including two-way reply tools and sender-pairing flows.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/inlineapps/claude-slack-event-channel-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server