Skip to main content
ClaudeWave

MCP server for Slack using session tokens — no OAuth, no bot, no admin approval. Stealth reads leave unread state alone.

MCP ServersOfficial Registry2 stars0 forksGoMITUpdated today
ClaudeWave Trust Score
95/100
Verified
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Documented (README)
Last scanned: 8/21/2026
Install in Claude Code / Claude Desktop
Method: NPX · @aaronsb/slack-mcp
Claude Code CLI
claude mcp add slack-mcp -- npx -y @aaronsb/slack-mcp
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "slack-mcp": {
      "command": "npx",
      "args": ["-y", "@aaronsb/slack-mcp"],
      "env": {
        "SLACK_MCP_XOXC_TOKEN": "<slack_mcp_xoxc_token>",
        "SLACK_MCP_XOXD_TOKEN": "<slack_mcp_xoxd_token>"
      }
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Detected environment variables
SLACK_MCP_XOXC_TOKENSLACK_MCP_XOXD_TOKEN
Use cases

MCP Servers overview

# Slack MCP

![License](https://img.shields.io/github/license/aaronsb/slack-mcp)
![GitHub stars](https://img.shields.io/github/stars/aaronsb/slack-mcp?style=social)
![Latest Release](https://img.shields.io/github/v/release/aaronsb/slack-mcp?include_prereleases&label=version)

MCP server that gives AI agents access to your Slack workspaces using session tokens. No OAuth apps, no bot permissions, no admin approval required.

Beyond reading and writing messages, it accumulates a durable picture of the workspace — every channel and user's state over time, departures kept as dated tombstones — and synthesizes a relationship graph from it on demand: `estate view='about' person='X'` answers "tell me about X" with their footprint, circle, and a ranked reading plan. The graph is never stored; it is computed per query from two small local ledgers that hold no message content ([design note](docs/design-notes/runtime-graph-synthesis.md)).

## How it works

Slack MCP uses your existing browser session tokens (`xoxc`/`xoxd`) to interact with Slack on your behalf. It reads stealthily by default — only the `mark-read` tool triggers read receipts. Everything else is invisible to other users.

**Token extraction** is built into the binary. If you're logged into Slack in Chrome or Firefox, the setup flow can extract tokens automatically — no copy-pasting from DevTools.

## Prerequisites

You need an active Slack session in your browser. Log into your workspace at [app.slack.com](https://app.slack.com) in **Chrome**, **Chromium**, **Edge**, or **Firefox** before running setup.

## Install

### Claude Code

```bash
claude mcp add slack-mcp -- npx -y @aaronsb/slack-mcp
```

Then ask Claude to run the `auth` tool. It will guide you through browser selection, profile selection, and automatic token extraction.

### Claude Desktop

Download the `.mcpb` file for your platform from the [latest release](https://github.com/aaronsb/slack-mcp/releases/latest):

| Platform | File |
|----------|------|
| macOS (Apple Silicon) | `slack-mcp-darwin-arm64.mcpb` |
| macOS (Intel) | `slack-mcp-darwin-x64.mcpb` |
| Linux (x64) | `slack-mcp-linux-x64.mcpb` |
| Linux (ARM) | `slack-mcp-linux-arm64.mcpb` |
| Windows (x64) | `slack-mcp-windows-x64.mcpb` |

Open the file (double-click or drag into Claude Desktop). When prompted for tokens, you can either:
- Leave them blank and use the `auth` tool after connecting
- Paste tokens if you already have them

### Standalone binary

Download the binary for your platform from [releases](https://github.com/aaronsb/slack-mcp/releases/latest), then:

```bash
# Extract tokens from your browser (interactive)
./slack-mcp setup

# Run as MCP server (stdio, default)
./slack-mcp

# Run as MCP server (SSE, for remote/shared access)
./slack-mcp --transport sse
```

### npm (global)

```bash
npm install -g @aaronsb/slack-mcp
slack-mcp setup
```

## Token setup

There are three ways to get your Slack tokens, from easiest to most manual:

### Automatic (Chrome/Edge)

The `auth` MCP tool or `slack-mcp setup` CLI command will:

1. Detect your installed browsers
2. Let you pick which browser and profile has Slack
3. Open the browser, navigate to Slack, and extract tokens via Chrome DevTools Protocol
4. Validate and save them

**Requires Chrome to be fully closed** before extraction — your tabs will restore when you reopen it.

### Semi-automatic (Firefox)

The setup flow writes a temporary browser extension to a temp directory, then guides you to load it in Firefox via `about:debugging`. The extension extracts tokens and sends them to the local callback server. It's removed automatically when Firefox closes.

### Manual

Run `slack-mcp setup` or use the `auth` tool — if no browser is detected or automatic extraction fails, it falls back to a localhost web page with step-by-step DevTools instructions.

You can also set tokens directly via environment variables:

```bash
export SLACK_MCP_XOXC_TOKEN="xoxc-..."
export SLACK_MCP_XOXD_TOKEN="xoxd-..."
./slack-mcp
```

## Tools

| Tool | Kind | What it does |
|------|------|-------------|
| `inbox` | noun | What needs you: `view='new'` (since your last dismiss), `'unreads'`, `'mentions'` |
| `messages` | noun | Conversation content: `target=` reads in full, `+around=` context, `+since=` time window, `query=` full Slack search syntax |
| `estate` | noun | Workspace shape and relationships: `view='about'\|'families'\|'person'\|'initiatives'\|'convergence'\|'people'\|'channels'` |
| `batch` | executor | Run a held plan of reads in one call: `commands=[{tool, params}...]`; playbooks via `save=`/`run=`/`list=`/`delete=` |
| `say` | verb | Contribute content (Slack-visible): a message, or an emoji reaction |
| `dismiss` | verb | Mark inbox items handled — private watermark, invisible to Slack |
| `mark-read` | verb | Fire read receipts — the one visibly-public read signal |
| `auth` | verb | Interactive token setup (localhost only) |
| `download` | verb | Download a shared file |

Verb encodes effect, noun encodes domain, parameter encodes scope (ADR-009); the batch executor encodes composition, never effect, and admits only the read nouns (ADR-010). Every noun echoes its effective parameters and pages every capped list.

## Privacy

- **Stealth by default** — reads never trigger read receipts; only `mark-read` does
- **Channel names, not IDs** — the AI never sees internal Slack identifiers
- **Tokens stay local** — stored in `~/.config/slack-mcp/config.json` with `0600` permissions
- **Ledgers hold no message content** — the durable estate ledger stores entity facts (names, lifecycle, tombstones); the attention ledger stores `{user, conversation, day}` encounters with a 90-day window; both live under XDG with `0600`, and deleting them deletes the graph
- **Hour-level activity is recorded only for you** — colleagues bucket by day, by design
- **No network traffic except Slack** — the binary connects only to `slack.com/api/*`
- **No browser downloads** — uses your installed browser, never fetches binaries from CDNs

## Development

```bash
make build          # Build for current platform
make test           # Run tests
make build-all-platforms  # Cross-compile (6 platforms)
make release TAG=v2.1.1   # Tag and push (CI handles the rest)
```

## License

MIT
ai-agentsclaudegolangmcpmodel-context-protocolslackslack-api

What people ask about slack-mcp

What is aaronsb/slack-mcp?

+

aaronsb/slack-mcp is mcp servers for the Claude AI ecosystem. MCP server for Slack using session tokens — no OAuth, no bot, no admin approval. Stealth reads leave unread state alone. It has 2 GitHub stars and its last recorded update is dated 2026-08-20.

How do I install slack-mcp?

+

You can install slack-mcp by cloning the repository (https://github.com/aaronsb/slack-mcp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is aaronsb/slack-mcp safe to use?

+

Our security agent has analyzed aaronsb/slack-mcp and assigned a Trust Score of 95/100 (tier: Verified). See the full breakdown of passed checks and flags on this page.

Who maintains aaronsb/slack-mcp?

+

aaronsb/slack-mcp is maintained by aaronsb. The last recorded GitHub activity is dated 2026-08-20, with 6 open issues.

Are there alternatives to slack-mcp?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy slack-mcp to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: aaronsb/slack-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/aaronsb-slack-mcp)](https://claudewave.com/repo/aaronsb-slack-mcp)
<a href="https://claudewave.com/repo/aaronsb-slack-mcp"><img src="https://claudewave.com/api/badge/aaronsb-slack-mcp" alt="Featured on ClaudeWave: aaronsb/slack-mcp" width="320" height="64" /></a>

More MCP Servers

slack-mcp alternatives