Slack MCP Server
MCP ServerFreeRead and send Slack messages and manage channels via MCP.
Capabilities8 decomposed
slack workspace channel enumeration and metadata retrieval
Medium confidenceExposes an MCP tool that queries the Slack API to list all accessible channels in a workspace, returning channel IDs, names, topics, and membership counts. Implements standardized MCP tool schema with JSON-RPC transport, allowing LLM clients to discover and inspect channel structure without direct API knowledge. Handles pagination and permission-based filtering automatically through Slack API responses.
Implements channel enumeration as a first-class MCP tool primitive rather than requiring clients to call Slack API directly, enabling LLM-native reasoning about workspace structure through standardized tool schema and JSON-RPC transport
Simpler than building custom Slack API wrappers because it leverages MCP's standardized tool registry and transport, making it immediately available to any MCP-compatible LLM client without additional SDK integration
slack message history retrieval with thread context
Medium confidenceImplements an MCP tool that fetches message history from a specified Slack channel, returning messages with timestamps, authors, and thread metadata. Uses Slack's conversations.history API endpoint with configurable limit and cursor-based pagination. Preserves thread relationships and reply counts, enabling LLM clients to understand conversation context and thread structure without flattening message hierarchy.
Exposes Slack message history as an MCP tool with built-in pagination support and thread metadata preservation, allowing LLM clients to maintain conversation context without manually managing Slack API cursors or thread expansion logic
More context-aware than simple REST API wrappers because it preserves thread relationships and integrates with MCP's tool schema, enabling LLMs to reason about message structure natively
slack message posting with channel targeting
Medium confidenceImplements an MCP tool that sends messages to a specified Slack channel using the chat.postMessage API. Accepts message text and channel ID as parameters, handles Slack's message formatting (plain text, markdown-like syntax), and returns the posted message timestamp for reference. Integrates with MCP's tool-calling protocol to enable LLM-driven message composition and delivery without requiring clients to manage Slack API authentication.
Wraps Slack's chat.postMessage API as an MCP tool primitive, enabling LLM clients to compose and send messages through standardized tool schema without direct API integration, with automatic authentication handling via bot token
Simpler than building custom Slack SDKs because it abstracts authentication and API details into a single MCP tool, making message posting immediately available to any LLM client without SDK dependencies
slack thread reply composition and posting
Medium confidenceImplements an MCP tool that posts replies to existing Slack message threads using the chat.postMessage API with thread_ts parameter. Accepts channel ID, thread timestamp, and reply text, maintaining thread coherence by linking replies to parent messages. Enables LLM clients to participate in threaded conversations without flattening message hierarchy or losing conversation context.
Exposes Slack's thread reply capability as a dedicated MCP tool, enabling LLM clients to maintain conversation threading natively without requiring manual thread_ts parameter management or API-level thread handling
Preserves conversation structure better than generic message posting because it explicitly targets threads, allowing LLMs to reason about message hierarchy and maintain coherent multi-turn discussions
slack message reaction management (add/remove emoji reactions)
Medium confidenceImplements MCP tools for adding and removing emoji reactions to Slack messages. Uses the reactions.add and reactions.remove API endpoints, accepting message timestamp, channel ID, and emoji name as parameters. Enables LLM clients to express sentiment, acknowledgment, or categorization through Slack's native reaction system without direct API calls, integrating reaction management into agent workflows.
Wraps Slack's reactions API as MCP tools, enabling LLM clients to use emoji reactions as a lightweight feedback mechanism without requiring knowledge of Slack's internal emoji naming conventions or API endpoints
More intuitive than building custom reaction handlers because it leverages Slack's native reaction system, allowing LLMs to express intent through familiar UI elements that Slack users already understand
mcp tool schema registration and json-rpc transport
Medium confidenceImplements the foundational MCP server infrastructure that registers all Slack tools (channel listing, message retrieval, posting, reactions) as standardized tool primitives with JSON schema definitions. Uses JSON-RPC 2.0 protocol over stdio or network transport to communicate tool availability and handle tool invocation requests from MCP clients. Manages authentication via Slack bot token and translates between MCP tool calls and Slack API requests.
Implements the complete MCP server lifecycle including tool schema registration, JSON-RPC message handling, and Slack API translation, following the official MCP reference server pattern from modelcontextprotocol/servers repository
More standardized than custom Slack API wrappers because it adheres to MCP protocol specifications, enabling interoperability with any MCP-compatible client and reducing vendor lock-in to specific LLM platforms
slack bot token authentication and scope validation
Medium confidenceManages Slack bot token authentication by validating token format, checking required OAuth scopes (channels:read, chat:write, reactions:write), and handling token refresh if needed. Stores token securely and validates scope availability before executing tools, preventing runtime failures due to insufficient permissions. Implements error handling for invalid or expired tokens with clear error messages to clients.
Implements scope-aware authentication that validates token permissions before tool execution, preventing silent failures and providing clear error messages when tools lack required OAuth scopes
More secure than passing raw tokens to clients because it centralizes authentication in the MCP server and validates scopes server-side, reducing the risk of unauthorized API calls
slack api error handling and rate limit management
Medium confidenceImplements error handling for Slack API responses, translating Slack-specific errors (invalid_channel, not_in_channel, rate_limited) into MCP error protocol messages. Detects rate limiting (429 responses) and implements exponential backoff retry logic with configurable delays. Provides detailed error context to clients including error codes, descriptions, and retry suggestions, enabling graceful degradation in agent workflows.
Implements Slack-specific error translation and rate limit handling within the MCP server, abstracting API-level failures from clients and providing automatic retry logic with exponential backoff
More resilient than naive API wrappers because it implements server-side retry logic and rate limit detection, preventing client-side cascading failures during Slack API throttling
Capabilities are decomposed by AI analysis. Each maps to specific user intents and improves with match feedback.
Related Artifactssharing capabilities
Artifacts that share capabilities with Slack MCP Server, ranked by overlap. Discovered automatically through the match graph.
slack-mcp-server
Model Context Protocol (MCP) server for Slack Workspaces. This integration supports both Stdio and SSE transports, proxy settings and does not require any permissions or bots being created or approved by Workspace admins
@sigmacomputing/slack-mcp-server
MCP server for interacting with Slack
@sigmacomputing/slack-mcp-server
MCP server for interacting with Slack
slack-relay-mcp
Code-execution-based Slack MCP tool — CLI + TypeScript API + Claude Code skill
Slack
** - Channel management and messaging capabilities. Now maintained by [Zencoder](https://github.com/zencoderai/slack-mcp-server)
Q, ChatGPT for Slack
AI workforce on Slack for under-resourced SMEs
Best For
- ✓AI agents and assistants integrated with Slack workspaces
- ✓Teams building Slack-aware chatbots that need workspace awareness
- ✓Developers creating Slack automation workflows with LLM decision-making
- ✓Slack-integrated AI assistants that need conversation context before responding
- ✓Teams building message analysis or summarization agents
- ✓Developers creating Slack bots that must understand historical context
- ✓AI agents and chatbots that need to send messages to Slack channels
- ✓Notification systems powered by LLMs
Known Limitations
- ⚠Returns only channels accessible to the authenticated bot token — private channels require explicit membership
- ⚠No filtering by channel type (public vs private) in the tool itself — clients must parse response
- ⚠Pagination handled transparently but large workspaces (1000+ channels) may incur multiple API calls with latency impact
- ⚠Default limit typically 100 messages per call — requires pagination for longer histories
- ⚠Thread replies are not automatically expanded — clients must make separate API calls per thread
- ⚠Message content is returned as-is without parsing mentions, links, or file attachments into structured format
Requirements
Input / Output
UnfragileRank
UnfragileRank is computed from adoption signals, documentation quality, ecosystem connectivity, match graph feedback, and freshness. No artifact can pay for a higher rank.
About
Official MCP server for Slack workspace integration. Exposes tools for listing channels, reading message history, posting messages, replying to threads, and managing reactions in Slack.
Categories
Alternatives to Slack MCP Server
Are you the builder of Slack MCP Server?
Claim this artifact to get a verified badge, access match analytics, see which intents users search for, and manage your listing.
Get the weekly brief
New tools, rising stars, and what's actually worth your time. No spam.
Data Sources
Looking for something else?
Search →