# Slack — how to use (mcp.ai)

Slack via linguagem natural: envie e busque mensagens, gerencie canais, usuários e reações. Plataforma fornece a aplicação OAuth, você só clica em Conectar e autoriza seu workspace Slack. Vários workspaces podem ser conectados no mesmo MCP.

## Option A — via MCP (recommended)
Remote MCP endpoint (HTTP, streamable): `https://api.mcp.ai/p_slack?ms=1788880320000`
Add it as a custom/remote MCP connector in your client (Claude, Cursor, VS Code…), then authenticate when prompted. Once connected, ask the agent to use the server's tools (e.g. `slack_add_call_participants`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/slack`
Auth: `Authorization: Bearer sk_live_…` — create a workspace API key at https://mcp.ai/settings/api-keys
Discover endpoints: `GET https://api.mcp.ai/api/slack/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/slack/add/call/participants` — Registers new participants added to a Slack call.
  - body: { id: string, users: string }
- `POST https://api.mcp.ai/api/slack/add/emoji` — Adds a custom emoji to a Slack workspace given a unique name and an image URL; subject to workspace emoji limits.
  - body: { url: string, name: string }
- `POST https://api.mcp.ai/api/slack/add/emoji/alias` — Adds an alias for an existing custom emoji in a Slack Enterprise Grid organization.
  - body: { name: string, alias_for: string }
- `POST https://api.mcp.ai/api/slack/add/reaction/to/an/item` — Adds a specified emoji reaction to an existing message in a Slack channel, identified by its timestamp; does not remove or retrieve reactions.
  - body: { name: string, channel: string, timestamp: string }
- `POST https://api.mcp.ai/api/slack/add/remote/file` — Adds a reference to an external file (e.g., Google Drive, Dropbox) to Slack for discovery and sharing, requiring a unique `external_id` and an `external_url` accessible by Slack.
  - body: { title: string, filetype?: string, external_id: string, external_url: string, preview_image?: string, indexable_file_contents?: string }
- `POST https://api.mcp.ai/api/slack/add/star` — Stars a channel, file, file comment, or a specific message in Slack.
  - body: { file?: string, channel?: string, timestamp?: string, file_comment?: string }
- `POST https://api.mcp.ai/api/slack/archive/conversation` — Archives a Slack conversation by its ID, rendering it read-only and hidden while retaining history, ideal for cleaning up inactive channels; be aware that some channels (like #general or certain DMs) 
  - body: { channel?: string }
- `POST https://api.mcp.ai/api/slack/chat/post/message` — (DEPRECATED: use `SLACK_SEND_MESSAGE`) Posts a message to a Slack channel, DM, or private group; requires at least one content field (`markdown_text`, `text`, `blocks`, or `attachments`) — omitting al
  - body: { text?: string, parse?: string, blocks?: string|object[], mrkdwn?: boolean, channel: string, thread_ts?: string, link_names?: boolean, attachments?: string, unfurl_links?: boolean, unfurl_media?: boolean, markdown_text?: string, reply_broadcast?: boolean }
- `POST https://api.mcp.ai/api/slack/close/dm` — Closes a Slack direct message (DM) or multi-person direct message (MPDM) channel, removing it from the user's sidebar without deleting history; this action affects only the calling user's view.
  - body: { channel: string }
- `POST https://api.mcp.ai/api/slack/create/a/reminder` — Creates a Slack reminder with specified text and time; time accepts Unix timestamps, seconds from now, or natural language (e.g., 'in 15 minutes', 'every Thursday at 2pm').
  - body: { text: string, time: string, user?: string, team_id?: string }
- `POST https://api.mcp.ai/api/slack/create/channel` — Initiates a public or private channel-based conversation in a Slack workspace. Immediately creates the channel; invoke only after explicit user confirmation.
  - body: { name: string, team_id?: string, is_private?: boolean }
- `POST https://api.mcp.ai/api/slack/create/channel/based/conversation` — Creates a new public or private Slack channel with a unique name; the channel can be org-wide, or team-specific if `team_id` is given (required if `org_wide` is false or not provided).
  - body: { name: string, team_id?: string, org_wide?: boolean, is_private: boolean, description?: string }
- `POST https://api.mcp.ai/api/slack/create/user/group` — Creates a new User Group (often referred to as a subteam) in a Slack workspace.
  - body: { name: string, handle?: string, team_id?: string, channels?: string, description?: string, include_count?: boolean, enable_section?: boolean, additional_channels?: string }
- `POST https://api.mcp.ai/api/slack/customize/url/unfurl` — Customizes URL previews (unfurling) in a specific Slack message using a URL-encoded JSON in `unfurls` to define custom content or remove existing previews.
  - body: { ts?: string, source?: string, channel?: string, unfurls?: string, metadata?: string, unfurl_id?: string, user_auth_url?: string, user_auth_blocks?: string, user_auth_message?: string, user_auth_required?: boolean }
- `POST https://api.mcp.ai/api/slack/delete/channel` — Permanently and irreversibly deletes a specified public or private channel, including all its messages and files, within a Slack Enterprise Grid organization.
  - body: { channel_id: string }
- `POST https://api.mcp.ai/api/slack/delete/file` — Permanently deletes an existing file from a Slack workspace using its unique file ID; this action is irreversible and also removes any associated comments or shares.
  - body: { file: string }
- `POST https://api.mcp.ai/api/slack/delete/file/comment` — Deletes a specific comment from a file in Slack; this action is irreversible.
  - body: { id: string, file: string }
- `POST https://api.mcp.ai/api/slack/delete/reminder` — Deletes an existing Slack reminder, typically when it is no longer relevant or a task is completed; this operation is irreversible.
  - body: { team_id?: string, reminder: string }
- `POST https://api.mcp.ai/api/slack/delete/scheduled/message` — Deletes a pending, unsent scheduled message from the specified Slack channel, identified by its `scheduled_message_id`.
  - body: { as_user?: boolean, channel: string, scheduled_message_id: string }
- `POST https://api.mcp.ai/api/slack/delete/user/profile/photo` — Deletes the Slack profile photo for the user identified by the token, reverting them to the default avatar; this action is irreversible and succeeds even if no custom photo was set.
- `POST https://api.mcp.ai/api/slack/deletes/a/message/from/a/chat` — Deletes a message, identified by its channel ID and timestamp, from a Slack channel, private group, or direct message conversation; the authenticated user or bot must be the original poster.
  - body: { ts?: string, as_user?: boolean, channel?: string }
- `POST https://api.mcp.ai/api/slack/disable/user/group` — Disables a specified, currently enabled Slack User Group by its unique ID, effectively archiving it by setting its 'date_delete' timestamp; the group is not permanently deleted and can be re-enabled.
  - body: { team_id?: string, usergroup: string, include_count?: boolean }
- `POST https://api.mcp.ai/api/slack/enable/public/sharing/of/a/file` — Enables public sharing for an existing Slack file by generating a publicly accessible URL; this action does not create new files. Once enabled, the file is accessible to anyone with the URL — verify i
  - body: { file: string }
- `POST https://api.mcp.ai/api/slack/enable/user/group` — Enables a disabled User Group in Slack using its ID, reactivating it for mentions and permissions; this action only changes the enabled status and cannot create new groups or modify other properties.
  - body: { team_id?: string, usergroup: string, include_count?: boolean }
- `POST https://api.mcp.ai/api/slack/end/call` — Ends an ongoing Slack call, identified by its ID (obtained from `calls.add`), optionally specifying the call's duration.
  - body: { id: string, duration?: integer }
- `POST https://api.mcp.ai/api/slack/end/dnd` — Ends the authenticated user's current Do Not Disturb (DND) session in Slack, affecting only DND status and making them available; if DND is not active, Slack acknowledges the request without changing 
- `POST https://api.mcp.ai/api/slack/end/snooze` — Ends the current user's snooze mode immediately.
- `POST https://api.mcp.ai/api/slack/fetch/conversation/history` — Fetches a chronological list of messages and events from a specified Slack conversation, accessible by the authenticated user/bot, with options for pagination and time range filtering. IMPORTANT LIMIT
  - body: { limit?: integer, cursor?: string, latest?: string, oldest?: string, channel: string, inclusive?: boolean, include_all_metadata?: boolean }
- `POST https://api.mcp.ai/api/slack/fetch/item/reactions` — Fetches reactions for a Slack message, file, or file comment. Exactly one identifier path must be provided: `channel`+`timestamp`, `file`, or `file_comment`. Mixing identifiers (e.g., providing both `
  - body: { file?: string, full?: boolean, channel?: string, timestamp?: string, file_comment?: string }
- `POST https://api.mcp.ai/api/slack/fetch/message/thread/from/a/conversation` — Retrieves replies to a specific parent message in a Slack conversation, using the channel ID and the parent message's timestamp (`ts`). Note: The parent message in the response contains metadata (repl
  - body: { ts?: string, limit?: integer, cursor?: string, latest?: string, oldest?: string, channel?: string, inclusive?: boolean, include_all_metadata?: boolean }
- `POST https://api.mcp.ai/api/slack/fetch/team/info` — Fetches comprehensive metadata about the current Slack team, or a specified team if the provided ID is accessible.
  - body: { team?: string, domain?: string }
- `POST https://api.mcp.ai/api/slack/find/channels` — Find channels in a Slack workspace by any criteria - name, topic, purpose, or description. Returns channel IDs (C*/G* prefixed) required by most Slack tools — always resolve names to IDs here before p
  - body: { limit?: integer, query: string, types?: string, team_id?: string, exact_match?: boolean, member_only?: boolean, exclude_archived?: boolean }
- `POST https://api.mcp.ai/api/slack/find/user/by/email/address` — Retrieves the Slack user object for an active user by their registered email address; requires the users:read.email OAuth scope. Fails with 'users_not_found' if the email is unregistered, the user is 
  - body: { email: string }
- `POST https://api.mcp.ai/api/slack/find/users` — Find users in a Slack workspace by any criteria - email, name, display name, or other text. Includes optimized email lookup for exact email matches. Zero results may reflect email visibility restricti
  - body: { email?: string, limit?: integer, team_id?: string, exact_match?: boolean, include_bots?: boolean, search_query?: string, include_locale?: boolean, include_deleted?: boolean, include_restricted?: boolean }
- `POST https://api.mcp.ai/api/slack/get/bot/user` — Fetches information for a specified, existing Slack bot user; will not work for regular user accounts or other integration types.
  - body: { bot?: string, team_id?: string }
- `POST https://api.mcp.ai/api/slack/get/call/info` — Retrieves a point-in-time snapshot of a specific Slack call's information.
  - body: { id: string }
- `POST https://api.mcp.ai/api/slack/get/channel/conversation/preferences` — Retrieves conversation preferences (e.g., who can post, who can thread) for a specified channel, primarily for use within Slack Enterprise Grid environments.
  - body: { channel_id: string }
- `POST https://api.mcp.ai/api/slack/get/reminder` — Retrieves detailed information for an existing Slack reminder specified by its ID; this is a read-only operation.
  - body: { team_id?: string, reminder: string }
- `POST https://api.mcp.ai/api/slack/get/remote/file` — Retrieve information about a remote file added to Slack via the files.remote API. Does not work for standard Slack-hosted file uploads.
  - body: { file?: string, external_id?: string }
- `POST https://api.mcp.ai/api/slack/get/team/profile` — Retrieves all profile field definitions for a Slack team, optionally filtered by visibility, to understand the team's profile structure.
  - body: { team_id?: string, visibility?: string }
- `POST https://api.mcp.ai/api/slack/get/user/dnd/status` — Retrieves a user's current Do Not Disturb status.
  - body: { users: string, team_id?: string }
- `POST https://api.mcp.ai/api/slack/get/user/presence` — Retrieves a Slack user's current real-time presence (e.g., 'active', 'away') to determine their availability, noting this action does not provide historical data or status reasons.
  - body: { user?: string }
- `POST https://api.mcp.ai/api/slack/get/workspace/settings` — Retrieves detailed settings for a specific Slack workspace, primarily for administrators in an Enterprise Grid organization to view or audit workspace configurations.
  - body: { team_id: string }
- `POST https://api.mcp.ai/api/slack/invite/user/to/channel` — Invites users to a specified Slack channel; this action is restricted to Enterprise Grid workspaces and requires the authenticated user to be a member of the target channel.
  - body: { user_ids: string, channel_id: string }
- `POST https://api.mcp.ai/api/slack/invite/user/to/workspace` — Invites a user to a Slack workspace and specified channels by email; use `resend=True` to re-process an existing invitation for a user not yet signed up.
  - body: { email: string, resend?: boolean, team_id: string, real_name?: string, channel_ids: string, is_restricted?: boolean, custom_message?: string, guest_expiration_ts?: string, is_ultra_restricted?: boolean, email_password_policy_enabled?: boolean }
- `POST https://api.mcp.ai/api/slack/invite/users/to/a/slack/channel` — Invites users to an existing Slack channel using their valid Slack User IDs. Response is always HTTP 200; inspect `ok`, `error`, and `errors` fields to confirm users were added.
  - body: { force?: boolean, users?: string, channel?: string }
- `POST https://api.mcp.ai/api/slack/join/an/existing/conversation` — Joins an existing Slack conversation (public channel, private channel, or multi-person direct message) by its ID, if the authenticated user has permission. Joining an already-joined channel returns a 
  - body: { channel: string }
- `POST https://api.mcp.ai/api/slack/leave/a/conversation` — (DEPRECATED: use `SLACK_LEAVE_CONVERSATION`) Leaves a Slack conversation given its channel ID; fails if leaving as the last member of a private channel or if used on a Slack Connect channel.
  - body: { channel: string }
- `POST https://api.mcp.ai/api/slack/list/all/channels` — Lists conversations available to the user with various filters and search options. Always use resolved `channel_id` (not display names) for downstream operations, as names may be non-unique. The `crea
  - body: { limit?: integer, types?: string, cursor?: string, team_id?: string, exclude_archived?: boolean }
- `POST https://api.mcp.ai/api/slack/list/all/users` — Retrieves a paginated list of all users with profile details, status, and team memberships in a Slack workspace; data may not be real-time. Filter response fields `is_bot`, `is_app_user`, and `deleted
  - body: { limit?: integer, cursor?: string, team_id?: string, include_locale?: boolean }
- `POST https://api.mcp.ai/api/slack/list/conversations` — List conversations (channels/DMs) accessible to a specified user (or the authenticated user if no user ID is provided), respecting shared membership for non-public channels. Returns conversation IDs (
  - body: { user?: string, limit?: integer, types?: string, cursor?: string, team_id?: string, exclude_archived?: boolean }
- `POST https://api.mcp.ai/api/slack/list/custom/emojis` — Retrieves all custom emojis for the Slack workspace (image URLs or aliases), not standard Unicode emojis; does not include usage statistics or creation dates.
  - body: { include_categories?: boolean }
- `POST https://api.mcp.ai/api/slack/list/files/with/filters/in/slack` — Lists files and their metadata within a Slack workspace, filterable by user, channel, timestamp, or type; returns metadata only, not file content. Results are limited to files visible to the authentic
  - body: { page?: string, user?: string, count?: string, ts_to?: integer, types?: string, channel?: string, team_id?: string, ts_from?: integer, show_files_hidden_by_limit?: boolean }
- `POST https://api.mcp.ai/api/slack/list/pinned/items` — Retrieves all messages and files pinned to a specified channel; the caller must have access to this channel.
  - body: { channel: string }
- `POST https://api.mcp.ai/api/slack/list/reminders` — Lists all reminders with their details for the authenticated Slack user; returns an empty array if no reminders exist (valid state, not an error). Reminder text is not unique—perform client-side match
  - body: { team_id?: string }
- `POST https://api.mcp.ai/api/slack/list/remote/files` — Retrieve information about a team's remote files.
  - body: { limit?: integer, ts_to?: number, cursor?: string, channel?: string, ts_from?: number }
- `POST https://api.mcp.ai/api/slack/list/scheduled/messages` — Retrieves a list of pending (not yet delivered) messages scheduled in a specific Slack channel, or across all accessible channels if no channel ID is provided, optionally filtered by time and paginate
  - body: { limit?: integer, cursor?: string, latest?: string, oldest?: string, channel?: string, team_id?: string }
- `POST https://api.mcp.ai/api/slack/list/starred/items` — Lists items starred by a user. Returns classic starred items only — does not reflect Slack's 'saved for later' feature. Use SLACK_SEARCH_MESSAGES or SLACK_SEARCH_ALL for broader saved-content queries.
  - body: { page?: integer, count?: integer, limit?: integer, cursor?: string, team_id?: string }
- `POST https://api.mcp.ai/api/slack/list/user/group/members` — Retrieves a list of all user IDs within a specified Slack user group, with an option to include users from disabled groups.
  - body: { team_id?: string, usergroup: string, include_disabled?: boolean }
- `POST https://api.mcp.ai/api/slack/list/user/groups` — Lists user groups in a Slack workspace, including user-created and default groups; results for large workspaces may be paginated.
  - body: { team_id?: string, include_count?: boolean, include_users?: boolean, include_disabled?: boolean }
- `POST https://api.mcp.ai/api/slack/list/user/reactions` — Lists all reactions added by a specific user to messages, files, or file comments in Slack, useful for engagement analysis when the item content itself is not required. Results are paginated; check `r
  - body: { full?: boolean, page?: integer, user?: string, count?: integer, limit?: integer, cursor?: string, team_id?: string }
- `POST https://api.mcp.ai/api/slack/list/workspace/users` — Retrieves a paginated list of admin users for a specified Slack workspace.
  - body: { limit?: integer, cursor?: string, team_id?: string, is_active?: boolean, only_guests?: boolean, include_deactivated_user_workspaces?: boolean }
- `POST https://api.mcp.ai/api/slack/manually/set/user/presence` — (DEPRECATED: use `SLACK_SET_USER_PRESENCE`) Manually sets a user's Slack presence, overriding automatic detection; this setting persists across connections but can be overridden by user actions or Sla
  - body: { presence: string }
- `POST https://api.mcp.ai/api/slack/open/dm` — Opens or resumes a Slack direct message (DM) or multi-person direct message (MPIM) by providing either user IDs or an existing channel ID. Returns `already_open=true` when the DM exists — treat as suc
  - body: { users?: string, channel?: string, return_im?: boolean, prevent_creation?: boolean }
- `POST https://api.mcp.ai/api/slack/pin/item` — Pins a message to a specified Slack channel; the message must not already be pinned.
  - body: { channel: string, timestamp: string }
- `POST https://api.mcp.ai/api/slack/remove/call/participants` — Registers participants removed from a Slack call.
  - body: { id: string, users: string }
- `POST https://api.mcp.ai/api/slack/remove/reaction/from/item` — Removes an emoji reaction from a message, file, or file comment in Slack. Provide exactly one targeting method: channel+timestamp together, file, or file_comment. Mixing methods or omitting all return
  - body: { file?: string, name: string, channel?: string, timestamp?: string, file_comment?: string }
- `POST https://api.mcp.ai/api/slack/remove/remote/file` — Removes the Slack reference to an external file (which must have been previously added via the remote files API), specified by either its `external_id` or `file` ID (one of which is required), without
  - body: { file?: string, token?: string, external_id?: string }
- `POST https://api.mcp.ai/api/slack/remove/star` — Removes a star from a previously starred Slack item (message, file, file comment, channel, group, or DM), requiring identification via `file`, `file_comment`, `channel` (for channel/group/DM), or both
  - body: { file?: string, channel?: string, timestamp?: string, file_comment?: string }
- `POST https://api.mcp.ai/api/slack/remove/user/from/conversation` — Removes a specified user from a Slack conversation (channel); the caller must have permissions to remove users and cannot remove themselves using this action.
  - body: { user?: string, channel?: string }
- `POST https://api.mcp.ai/api/slack/rename/conversation` — Renames a Slack channel, automatically adjusting the new name to meet naming conventions (e.g., converting to lowercase), which may affect integrations using the old name.
  - body: { name?: string, channel?: string }
- `POST https://api.mcp.ai/api/slack/rename/emoji` — Renames an existing custom emoji in a Slack workspace, updating all its instances.
  - body: { name: string, new_name: string }
- `POST https://api.mcp.ai/api/slack/retrieve/a/user/s/identity/details` — Retrieves the authenticated user's and their team's identity, with details varying based on OAuth scopes (e.g., `identity.basic`, `identity.email`, `identity.avatar`).
- `POST https://api.mcp.ai/api/slack/retrieve/conversation/information` — Retrieves metadata for a Slack conversation by ID (e.g., name, purpose, creation date, with options for member count/locale), excluding message content. The `channel` parameter is effectively required
  - body: { channel?: string, include_locale?: boolean, include_num_members?: boolean }
- `POST https://api.mcp.ai/api/slack/retrieve/conversation/members/list` — Retrieves a paginated list of active member IDs (not names, emails, or presence) for a specified Slack public channel, private channel, DM, or MPIM. Returns only user IDs; use a user-lookup tool to en
  - body: { limit?: integer, cursor?: string, channel?: string }
- `POST https://api.mcp.ai/api/slack/retrieve/current/user/dnd/status` — Retrieves a Slack user's current Do Not Disturb (DND) status to determine their availability before interaction; any specified user ID must be a valid Slack user ID.
  - body: { user?: string, team_id?: string }
- `POST https://api.mcp.ai/api/slack/retrieve/detailed/information/about/a/file` — Retrieves detailed metadata and paginated comments for a specific Slack file ID; does not download file content.
  - body: { file: string, page?: integer, count?: integer, limit?: integer, cursor?: string }
- `POST https://api.mcp.ai/api/slack/retrieve/detailed/user/information` — Retrieves comprehensive information for a valid Slack user ID, excluding message history and channel memberships. Sensitive fields like `email` and `phone` require the `users:read.email` scope and may
  - body: { user?: string, include_locale?: boolean }
- `POST https://api.mcp.ai/api/slack/retrieve/message/permalink/url` — Retrieves a permalink URL for a specific message in a Slack channel or conversation; the permalink respects Slack's privacy settings.
  - body: { channel: string, message_ts: string }
- `POST https://api.mcp.ai/api/slack/retrieve/user/profile/information` — Retrieves profile information for a specified Slack user (defaults to the authenticated user if `user` ID is omitted); a provided `user` ID must be valid. Sensitive fields like email and phone may be 
  - body: { user?: string, include_labels?: boolean }
- `POST https://api.mcp.ai/api/slack/revoke/file/public/sharing` — Revokes a Slack file's public URL, making it private; this is a no-op if not already public and is irreversible.
  - body: { file: string }
- `POST https://api.mcp.ai/api/slack/schedule/message` — Schedules a message to a Slack channel, DM, or private group for a future time (`post_at`), requiring `text`, `blocks`, or `attachments` for content; scheduling is limited to 120 days in advance.
  - body: { text?: string, parse?: string, blocks?: string, channel?: string, post_at?: string, thread_ts?: string, link_names?: boolean, attachments?: string, unfurl_links?: boolean, unfurl_media?: boolean, markdown_text?: string, reply_broadcast?: boolean }
- `POST https://api.mcp.ai/api/slack/search/messages` — Workspace‑wide Slack message search with date ranges and filters. Use `query` modifiers (e.g., in:#channel, from:@user, before/after:YYYY-MM-DD), sorting (score/timestamp), and pagination.
  - body: { page?: integer, sort?: string, count?: integer, query: string, cursor?: string, team_id?: string, sort_dir?: string, highlight?: boolean, auto_paginate?: boolean }
- `POST https://api.mcp.ai/api/slack/send/ephemeral/message` — Sends an ephemeral message visible only to the specified `user` in a channel; other channel members cannot see it. Both the bot and the target user must be members of the specified channel.
  - body: { text?: string, user: string, parse?: string, blocks?: string, as_user?: boolean, channel: string, icon_url?: string, username?: string, thread_ts?: string, icon_emoji?: string, link_names?: boolean, attachments?: string, markdown_text?: string }
- `POST https://api.mcp.ai/api/slack/send/me/message` — Sends a 'me message' (e.g., '/me is typing') to a Slack channel, where it's displayed as a third-person user action; messages are plain text and the channel must exist and be accessible.
  - body: { text?: string, channel?: string }
- `POST https://api.mcp.ai/api/slack/send/message` — Posts a message to a Slack channel, DM, or private group. Provide exactly one visible content mode: `markdown_text` for normal Markdown content, or `blocks` for raw Slack Block Kit layouts. Use `fallb
  - body: { blocks?: object[], channel: string, thread_ts?: string, unfurl_links?: boolean, unfurl_media?: boolean, fallback_text?: string, markdown_text?: string, reply_broadcast?: boolean }
- `POST https://api.mcp.ai/api/slack/set/conversation/purpose` — Sets the purpose (a short description of its topic/goal, displayed in the header) for a Slack conversation; the calling user must be a member.
  - body: { channel?: string, purpose?: string }
- `POST https://api.mcp.ai/api/slack/set/dnd/duration` — Turns on Do Not Disturb mode for the current user, or changes its duration.
  - body: { num_minutes: string }
- `POST https://api.mcp.ai/api/slack/set/profile/photo` — This method allows the user to set their profile image.
  - body: { image: object, crop_w?: integer, crop_x?: integer, crop_y?: integer }
- `POST https://api.mcp.ai/api/slack/set/read/cursor/in/a/conversation` — Marks a message, specified by its timestamp (`ts`), as the most recently read for the authenticated user in the given `channel`, provided the user is a member of the channel and the message exists wit
  - body: { ts?: string, channel?: string }
- `POST https://api.mcp.ai/api/slack/set/the/topic/of/a/conversation` — Sets or updates the topic for a specified Slack conversation.
  - body: { topic?: string, channel?: string }
- `POST https://api.mcp.ai/api/slack/set/user/profile` — Updates a Slack user's profile, setting either individual fields or multiple fields via a JSON object.
  - body: { name?: string, user?: string, value?: string, profile?: string }
- `POST https://api.mcp.ai/api/slack/share/remote/file` — Shares a remote file, which must already be registered with Slack, into specified Slack channels or direct message conversations.
  - body: { file?: string, channels: string, external_id?: string }
- `POST https://api.mcp.ai/api/slack/start/call` — Registers a new call in Slack using `calls.add` for third-party call integration; `created_by` is required if not using a user-specific token.
  - body: { title?: string, users?: string, join_url: string, created_by?: string, date_start?: integer, external_unique_id: string, external_display_id?: string, desktop_app_join_url?: string }
- `POST https://api.mcp.ai/api/slack/unarchive/channel` — Reverses conversation archival.
  - body: { channel: string }
- `POST https://api.mcp.ai/api/slack/unpin/item` — Unpins a message, identified by its timestamp, from a specified channel if the message is currently pinned there; this operation is destructive.
  - body: { channel: string, timestamp: string }
- `POST https://api.mcp.ai/api/slack/update/call/info` — Updates the title, join URL, or desktop app join URL for an existing Slack call identified by its ID.
  - body: { id: string, title?: string, join_url?: string, desktop_app_join_url?: string }
- `POST https://api.mcp.ai/api/slack/update/remote/file` — Updates metadata or content details for an existing remote file in Slack; this action cannot upload new files or change the fundamental file type.
  - body: { file?: string, title?: string, token?: string, filetype?: string, external_id?: string, external_url?: string, preview_image?: string, indexable_file_contents?: string }
- `POST https://api.mcp.ai/api/slack/update/user/group` — Updates an existing Slack User Group, which must be specified by an existing `usergroup` ID, with new optional details such as its name, description, handle, or default channels.
  - body: { name?: string, handle?: string, team_id?: string, channels?: string, usergroup: string, description?: string, include_count?: boolean, enable_section?: boolean, additional_channels?: string }
- `POST https://api.mcp.ai/api/slack/update/user/group/members` — Replaces all members of an existing Slack User Group with a new list of valid user IDs.
  - body: { users: string, team_id?: string, usergroup: string, include_count?: boolean }
- `POST https://api.mcp.ai/api/slack/updates/a/slack/message` — Updates a Slack message by timestamp. Provide exactly one visible content mode: `markdown_text` for normal Markdown content, or `blocks` for raw Slack Block Kit layouts. Use `fallback_text` only with 
  - body: { ts: string, blocks?: object[], as_user?: boolean, channel: string, file_ids?: string[], metadata?: object, fallback_text?: string, markdown_text?: string, reply_broadcast?: boolean }
- `POST https://api.mcp.ai/api/slack/upload/or/create/a/file/in/slack` — Upload files, images, screenshots, documents, or any media to Slack channels or threads. Supports all file types including images (PNG, JPG, JPEG, GIF), documents (PDF, DOCX, TXT), code files, and mor
  - body: { file?: object|object[], title?: string, token?: string, content?: string, channels?: string, filename?: string, filetype?: string, thread_ts?: string, initial_comment?: string }

## Example prompts
- "Envie 'Deploy concluído ✅' no canal #engineering"
- "Resuma as mensagens não lidas do canal #suporte de hoje"
- "Liste os canais do meu workspace"

## More
- Page: https://mcp.ai/slack
- Agent spec (llms.txt): https://mcp.ai/slack/llms.txt
- Postman collection: https://mcp.ai/slack/postman.json
