slack-user-mcp-server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| SLACK_USER_TOKEN | Yes | Your Slack User OAuth Token (starts with xoxp-) |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| slack_search_messagesA | Search for messages across your entire Slack workspace using the Slack search API. This uses YOUR user token, so it searches everything you have access to — channels, DMs, group messages. Supports Slack search modifiers:
Returns: List of matching messages with text, author, channel, timestamp, and permalink. Examples:
|
| slack_list_channelsA | List Slack channels you have access to. Can filter to only channels you've joined. Args:
Returns: List of channels with id, name, topic, purpose, and member count. |
| slack_get_channel_historyA | Fetch recent messages from a Slack channel, DM, or group message. Uses your user token so you can access any channel you're a member of. Args:
Returns: List of messages with text, author, timestamp, reactions, and thread info. |
| slack_post_messageA | Post a message to a Slack channel or DM as YOU (your user account). Args:
Returns: Confirmation with message timestamp and channel. |
| slack_lookup_userA | Search for Slack users by name or email address. Args:
Returns: List of matching users with id, name, email, title, and status. |
| slack_get_user_infoA | Get detailed profile information for a specific Slack user by their user ID. Args:
Returns: User profile with id, name, email, title, timezone, and status. |
| slack_auth_testA | Check which Slack user this token belongs to and verify the connection is working. Takes no arguments. Returns your user ID, username, team name, and team ID. |
| slack_get_threadB | Fetch all replies in a Slack thread. Args:
Returns: List of all messages in the thread. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 8 tools
Each tool targets a distinct Slack operation: searching messages, listing channels, fetching channel history, posting messages, looking up users, getting user details, testing auth, and fetching thread replies. There is no overlap that would confuse an agent.
All tool names follow the consistent pattern 'slack_<verb>_<noun>', with clear verbs like search, list, get, post, lookup, and auth_test. This provides a predictable and readable naming convention.
With 8 tools, the server is well-scoped for its purpose. It covers the essential Slack operations without unnecessary bloat or missing critical functions.
The tool set covers core workflows: searching, reading history, posting messages, handling threads, and user operations. Minor gaps exist, such as message editing/deleting or adding reactions, but these are not critical for typical Slack automation and can be worked around.