nomos-slack-mcp
Provides tools to read and write Slack messages, manage channels, search messages, set status, and react to messages, all using your own user identity.
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., "@nomos-slack-mcpsend a message to #general saying 'Running late'"
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.
nomos-slack-mcp
An MCP server that lets AI agents read and write Slack messages as you — not as a bot. Messages, reactions, and status updates appear exactly as if you typed them yourself.
Built for Claude Code and any MCP-compatible client. Supports multiple Slack workspaces with independent authentication.
Why?
Existing Slack integrations send messages as a bot with an APP badge. This uses Slack user tokens (xoxp-) so your agent operates as you — indistinguishable from you being at the keyboard.
Related MCP server: Slack MCP Server
Features
Send as you — no bot badge, no "APP" indicator
Multi-workspace — manage 2+ Slack workspaces with separate tokens and permissions
10 tools — read, write, search, react, set status
Smart resolution — use
#channel-name,@username, or raw channel IDsLocal only — tokens stay on your machine at
~/.nomos/slack/config.jsonwith0600permissions
Quick Start
1. Create a Slack App
For each workspace you want to connect:
Go to api.slack.com/apps → Create New App → From app manifest
Paste the contents of
slack-app-manifest.yml(or use the JSON version)Click Create
Go to Install App → Install to Workspace → Allow
The manifest pre-configures all required User Token Scopes and the OAuth redirect URL. No manual scope configuration needed.
2. Install
git clone https://github.com/project-nomos/nomos-slack-mcp.git
cd nomos-slack-mcp
pnpm install
pnpm build3. Add Your Workspaces
Option A: OAuth flow (recommended)
pnpm add-workspaceYou'll be prompted for:
A workspace alias (e.g.
work,side-project)Your Slack App's Client ID and Client Secret (found under Basic Information in your Slack App settings)
The script opens your browser for OAuth authorization and stores the user token automatically.
Option B: Manual token
pnpm add-workspace -- --manualPaste your xoxp- token directly. Find it in your Slack App under OAuth & Permissions → User OAuth Token.
Repeat for each workspace.
4. Connect to Claude Code
claude mcp add nomos-slack -- node /path/to/nomos-slack-mcp/dist/src/index.jsOr add to your MCP config manually:
{
"mcpServers": {
"nomos-slack": {
"command": "node",
"args": ["/path/to/nomos-slack-mcp/dist/src/index.js"]
}
}
}Tools
Tool | Description |
| List configured workspaces and which is default |
| Browse channels, DMs, groups — filter by type or name |
| Read recent messages from any channel or DM |
| Read all replies in a thread |
| Send a message as you |
| Reply in a thread as you |
| Search messages with Slack operators ( |
| List or search workspace members |
| Set your status emoji and text |
| Add a reaction to a message |
Channel Resolution
All tools that accept a channel parameter understand:
#general— public/private channel by name@john— opens a DM with that userC0123ABCDEF— raw Slack channel ID
Multi-Workspace
Every tool accepts an optional workspace parameter. Omit it to use your default workspace.
"Read my DMs in the side-project workspace"
→ slack_read_messages({ workspace: "side-project", channel: "@alice" })Configuration
Config is stored at ~/.nomos/slack/config.json:
{
"workspaces": {
"work": {
"token": "xoxp-...",
"teamId": "T01ABC123",
"teamName": "Acme Corp",
"userId": "U01XYZ789",
"addedAt": "2026-03-26T10:00:00Z"
},
"side-project": {
"token": "xoxp-...",
"teamId": "T02DEF456",
"teamName": "Side Project",
"userId": "U02UVW012",
"addedAt": "2026-03-26T11:00:00Z"
}
},
"defaultWorkspace": "work"
}File permissions are set to 0600 (owner read/write only).
Required Slack Scopes
All scopes are User Token Scopes (not Bot Token Scopes). The included app manifest configures these automatically.
Scope | Purpose |
| Read messages in public channels |
| List public channels |
| Read messages in private channels |
| List private channels |
| Read direct messages |
| List direct messages |
| Read group DMs |
| List group DMs |
| Send messages as you |
| List workspace members |
| See member emails |
| Search messages |
| Set your status |
| Add reactions |
| Read reactions |
Development
# Install dependencies
npm install
# Build
npm run build
# Type-check without emitting
pnpm check
# Watch mode
pnpm devProject Structure
src/
├── index.ts # MCP server entry point (stdio transport)
├── config/
│ ├── config-manager.ts # Read/write ~/.nomos/slack/config.json
│ └── types.ts # TypeScript interfaces
├── slack/
│ ├── client-manager.ts # Per-workspace WebClient instances + channel/user resolution
│ └── formatters.ts # Format Slack API responses for LLM consumption
├── tools/
│ ├── index.ts # Tool registry
│ ├── list-workspaces.ts
│ ├── list-channels.ts
│ ├── read-messages.ts
│ ├── read-thread.ts
│ ├── send-message.ts
│ ├── reply-thread.ts
│ ├── search.ts
│ ├── list-users.ts
│ ├── set-status.ts
│ └── react.ts
├── oauth/
│ ├── flow.ts # OAuth 2.0 token exchange
│ └── server.ts # Local callback server for OAuth
scripts/
└── add-workspace.ts # CLI for adding workspacesSecurity
Tokens are stored locally at
~/.nomos/slack/config.jsonwith0600file permissionsUser tokens (
xoxp-) are sensitive — they can act as you. Treat them like passwordsNo data leaves your machine except Slack API calls and whatever you send to your LLM provider as context
Bot tokens are rejected — the config manager validates that tokens start with
xoxp-
Troubleshooting
"No workspaces configured"
Run pnpm add-workspace to add a workspace.
"Token must be a user token (xoxp-...)"
You're using a bot token (xoxb-). Go to your Slack App → OAuth & Permissions → copy the User OAuth Token, not the Bot User OAuth Token.
"Channel #foo not found" The user token can only see channels you've joined. Join the channel in Slack first.
"missing_scope" errors Your Slack App is missing required scopes. Re-create the app using the provided manifest or manually add the missing scope under OAuth & Permissions → User Token Scopes, then reinstall the app.
Rate limiting
The Slack SDK handles 429 responses with automatic retry. If you hit persistent rate limits, reduce the frequency of requests. History endpoints are Tier 2 (~20 req/min), most others are Tier 3 (~50 req/min).
License
MIT
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.
Related MCP Servers
- Alicense-qualityDmaintenanceA read-only MCP server that enables AI assistants to access Slack workspace data, including channels, messages, threads, and user information.Last updated24,1283MIT
- Alicense-qualityCmaintenanceA Model Context Protocol (MCP) server for Slack workspace integration. This server allows AI assistants to interact directly with your Slack workspace, providing tools to manage channels, send messages, list users, and upload files.Last updated24,1281MIT
- Flicense-qualityDmaintenanceA Slack MCP server that gives AI assistants tools to read, search, and interact with Slack workspaces.Last updated
- Alicense-qualityBmaintenanceA production-ready MCP server for the Slack API that enables searching, listing channels, reading history, inspecting users, fetching threads, and sending messages through controlled Slack tools.Last updated24,128MIT
Related MCP Connectors
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
Driflyte MCP server which lets AI assistants query topic-specific knowledge from web and GitHub.
MCP server for AI dialogue using various LLM models via AceDataCloud
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/project-nomos/nomos-slack-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server