How to integrate Slack MCP with Claude Code

Manage your Slack directly from Claude Code with zero worries about OAuth hassles, API-breaking issues, or reliability and security concerns. You can do this in two different ways: Via Composio Connect - Direct and easiest approach Via Composio SDK - Programmatic approach with more control

Slack logoSlack
Oauth2

Slack is a channel-based messaging platform for teams and organizations. It helps people collaborate in real time, share files, and connect all their tools in one place.

145 Tools8 Triggers

Introduction

Manage your Slack directly from Claude Code with zero worries about OAuth hassles, API-breaking issues, or reliability and security concerns.

You can do this in two different ways:

  1. Via Composio Connect - Direct and easiest approach
  2. Via Composio SDK - Programmatic approach with more control

Also integrate Slack with

Why use Composio?

  • Only one MCP URL to connect multiple apps with Claude Code with zero auth hassles.
  • Programmatic tool calling allows LLMs to write its code in a remote workbench to handle complex tool chaining. Reduces to-and-fro with LLMs for frequent tool calling.
  • Handling Large tool responses out of LLM context to minimize context rot.
  • Dynamic just-in-time access to 20,000 tools across 1000+ other Apps for cross-app workflows. It loads the tools you need, so LLMs aren't overwhelmed by tools you don't need.

Connecting Slack to Claude Code using Composio

1. Add the Composio MCP to Claude

Terminal

2. Start Claude Code

bash
claude

3. Open your MCP list

bash
/mcp

4. Select Composio and click on Authenticate

Select Composio and click Authenticate

5. This will redirect you to the Composio OAuth page. Complete the flow by authorizing Composio and you're all set.

Composio OAuth authorization page
Composio authorization complete
Ask Claude to connect to your account and authenticate via the link

What is the Slack MCP server, and what's possible with it?

The Slack MCP server is an implementation of the Model Context Protocol that connects your AI agent and assistants like Claude, Cursor, etc directly to your Slack account. It provides structured and secure access to your messages, channels, files, and reminders, so your agent can send messages, manage conversations, organize reminders, and interact with channel content—all on your behalf.

  • Automated messaging and reminders: Let your agent send messages to channels, create reminders with natural language timing, and help your team stay on track.
  • Emoji and reaction management: Have the agent add custom emoji, create emoji aliases, or react to messages with specific emojis to keep conversations lively and expressive.
  • Channel and conversation organization: Ask the agent to archive inactive channels or close direct message threads, keeping your Slack workspace neat and focused.
  • File and external content sharing: Enable your agent to add references to external files from services like Google Drive or Dropbox, making collaboration seamless without leaving Slack.
  • Starring and prioritizing items: Let the agent star important channels, files, or messages so your priorities are always front and center.

Connecting Slack via Composio SDK

Composio SDK is the underlying tech that powers Rube. It's a universal gateway that does everything Rube does but with much more programmatic control. You can programmatically generate an MCP URL with the app you need (here Slack) for even more tool search precision. It's secure and reliable.

How the Composio SDK works

The Composio SDK follows a three-phase workflow:

  1. Discovery: Searches for tools matching your task and returns relevant toolkits with their details.
  2. Authentication: Checks for active connections. If missing, creates an auth config and returns a connection URL via Auth Link.
  3. Execution: Executes the action using the authenticated connection.

Step-by-step Guide

Step by step10 STEPS
1

Prerequisites

Before starting, make sure you have:
  • Claude Pro, Max, or API billing enabled Anthropic account
  • Composio API Key
  • A Slack account
  • Basic knowledge of Python or TypeScript
2

Install Claude Code

bash
# macOS, Linux, WSL
curl -fsSL https://claude.ai/install.sh | bash

# Windows PowerShell
irm https://claude.ai/install.ps1 | iex

# Windows CMD
curl -fsSL https://claude.ai/install.cmd -o install.cmd && install.cmd && del install.cmd

To install Claude Code, use one of the following methods based on your operating system:

3

Set up Claude Code

bash
cd your-project-folder
claude

Open a terminal, go to your project folder, and start Claude Code:

  • Claude Code will open in your terminal
  • Follow the prompts to sign in with your Anthropic account
  • Complete the authentication flow
  • Once authenticated, you can start using Claude Code
Claude Code initial setup showing sign-in prompt
Claude Code terminal after successful login
4

Set up environment variables

bash
COMPOSIO_API_KEY=your_composio_api_key_here
USER_ID=your_user_id_here

Create a .env file in your project root with the following variables:

  • COMPOSIO_API_KEY authenticates with Composio (get it from Composio dashboard)
  • USER_ID identifies the user for session management (use any unique identifier)
5

Install Composio library

npm install @composio/core dotenv

Install the Composio TypeScript library to create MCP sessions.

  • @composio/core provides the core Composio functionality
  • dotenv loads environment variables from your .env file
6

Generate Composio MCP URL

import 'dotenv/config';
import { Composio } from '@composio/core';

const { COMPOSIO_API_KEY, USER_ID } = process.env;

if (!COMPOSIO_API_KEY || !USER_ID) {
  throw new Error('COMPOSIO_API_KEY and USER_ID required in .env');
}

const composioClient = new Composio({ apiKey: COMPOSIO_API_KEY });

const composioSession = await composioClient.create(USER_ID, {
  toolkits: ['slack'],
});

const composioMcpUrl = composioSession?.mcp.url;

console.log(`MCP URL: ${composioMcpUrl}`);
console.log(`\nUse this command to add to Claude Code:`);
console.log(`claude mcp add --transport http slack-composio "${composioMcpUrl}" --headers "X-API-Key:${COMPOSIO_API_KEY}"`);

Create a script to generate a Composio MCP URL for Slack. This URL will be used to connect Claude Code to Slack.

What's happening

  • We import the Composio client and load environment variables
  • Create a Composio instance with your API key
  • Call create() to create a Tool Router session for Slack
  • The returned mcp.url is the MCP server URL that Claude Code will use
  • The script prints this URL so you can copy it
7

Run the script and copy the MCP URL

node --loader ts-node/esm generate_mcp_url.ts
# or if using tsx
tsx generate_mcp_url.ts

Run your TypeScript script to generate the MCP URL.

  • The script connects to Composio and creates a Tool Router session
  • It prints the MCP URL and the exact command you need to run
  • Copy the entire claude mcp add command from the output
8

Add Slack MCP to Claude Code

bash
claude mcp add --transport http slack-composio "YOUR_MCP_URL_HERE" --headers "X-API-Key:YOUR_COMPOSIO_API_KEY"

# Then restart Claude Code
exit
claude

In your terminal, add the MCP server using the command from the previous step. The command format is:

  • claude mcp add registers a new MCP server with Claude Code
  • --transport http specifies that this is an HTTP-based MCP server
  • The server name (slack-composio) is how you'll reference it
  • The URL points to your Composio Tool Router session
  • --headers includes your Composio API key for authentication

After running the command, close the current Claude Code session and start a new one for the changes to take effect.

9

Verify the installation

bash
claude mcp list

Check that your Slack MCP server is properly configured.

  • This command lists all MCP servers registered with Claude Code
  • You should see your slack-composio entry in the list
  • This confirms that Claude Code can now access Slack tools

If everything is wired up, you should see your slack-composio entry listed:

Claude Code MCP list showing the toolkit MCP server
10

Authenticate Slack

The first time you try to use Slack tools, you'll be prompted to authenticate.

  • Claude Code will detect that you need to authenticate with Slack
  • It will show you an authentication link
  • Open the link in your browser (or copy/paste it)
  • Complete the Slack authorization flow
  • Return to the terminal and start using Slack through Claude Code

Once authenticated, you can ask Claude Code to perform Slack operations in natural language. For example:

  • "Send reminder to marketing channel at 10am"
  • "Add reaction to latest team message"
  • "Archive inactive project channel after review"

Complete Code

Here's the complete code to get you started with Slack and Claude Code:

import 'dotenv/config';
import { Composio } from '@composio/core';

const { COMPOSIO_API_KEY, USER_ID } = process.env;

if (!COMPOSIO_API_KEY || !USER_ID) {
  throw new Error('COMPOSIO_API_KEY and USER_ID required in .env');
}

const composioClient = new Composio({ apiKey: COMPOSIO_API_KEY });

const composioSession = await composioClient.create(USER_ID, {
  toolkits: ['slack'],
});

const composioMcpUrl = composioSession?.mcp.url;

console.log(`MCP URL: ${composioMcpUrl}`);
console.log(`\nUse this command to add to Claude Code:`);
console.log(`claude mcp add --transport http slack-composio "${composioMcpUrl}" --headers "X-API-Key:${COMPOSIO_API_KEY}"`);

Conclusion

You've successfully integrated Slack with Claude Code using Composio's MCP server. Now you can interact with Slack directly from your terminal using natural language commands.

Key features of this setup:

  • Terminal-native experience without switching contexts
  • Natural language commands for Slack operations
  • Secure authentication through Composio's managed MCP
  • Tool Router for dynamic tool discovery and execution

Next steps:

  • Try asking Claude Code to perform various Slack operations
  • Add more toolkits to your Tool Router session for multi-app workflows
  • Integrate this setup into your development workflow for increased productivity

You can extend this by adding more toolkits, implementing custom workflows, or building automation scripts that leverage Claude Code's capabilities.

TOOLS & TRIGGERS

Supported Tools and Triggers

Every Slack action and event your agent gets out of the box.

Add call participants

Registers new participants added to a Slack call.

Add emoji

Adds a custom emoji to a Slack workspace given a unique name and an image URL; subject to workspace emoji limits.

Add an emoji alias

Adds an alias for an existing custom emoji in a Slack Enterprise Grid organization.

Add Enterprise user to workspace

Adds an Enterprise user to a workspace.

Add reaction to message

Adds a specified emoji reaction to an existing message in a Slack channel, identified by its timestamp; does not remove or retrieve reactions.

Add a remote file

Adds a reference to an external file (e.

Add a star to an item

Stars a channel, file, file comment, or a specific message in Slack.

Search for channels in Enterprise organization

Tool to search for public or private channels in an Enterprise organization.

Test Slack API connection

Tool to check API calling code by testing connectivity and authentication to the Slack API.

Archive a Slack 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) cannot be archived and this may impact connected integrations.

Real-time search

Search Slack messages, files, channels, and users via Real-time Search API.

Check search capabilities

Check if semantic (AI-powered) search is available on the Slack workspace.

Close conversation channel

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.

Convert public channel to private

Convert a public Slack channel to private using the Admin API.

Create a reminder

Creates a Slack reminder with specified text and time; time accepts Unix timestamps, seconds from now, or natural language (e.

Create Slack Canvas

Creates a new Slack Canvas with the specified title and optional content.

Create channel

Initiates a public or private channel-based conversation in a Slack workspace.

Create a 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).

Create Enterprise team

Tool to create an Enterprise team in Slack.

Create a Slack user group

Creates a new User Group (often referred to as a subteam) in a Slack workspace.

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.

Delete Slack Canvas

Deletes a Slack Canvas permanently and irreversibly.

Delete a public or private channel

Permanently and irreversibly deletes a specified public or private channel, including all its messages and files, within a Slack Enterprise Grid organization.

Delete a file by ID

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.

Delete file comment

Deletes a specific comment from a file in Slack; this action is irreversible.

Delete a Slack reminder

Deletes an existing Slack reminder, typically when it is no longer relevant or a task is completed; this operation is irreversible.

Delete 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.

Delete scheduled chat message

Deletes a pending, unsent scheduled message from the specified Slack channel, identified by its `scheduled_message_id`.

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.

Disable a Slack 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.

Download Slack file

Tool to download Slack file content and convert it to a publicly accessible URL.

Edit Slack Canvas

Edits a Slack Canvas with granular control over content placement.

Share file public url

Enables public sharing for an existing Slack file by generating a publicly accessible URL; this action does not create new files.

Enable a 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.

End a call

Ends an ongoing Slack call, identified by its ID (obtained from `calls.

End DND session

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 status.

End snooze

Ends the current user's snooze mode immediately.

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.

Fetch item reactions

Fetches reactions for a Slack message, file, or file comment.

Retrieve conversation replies

Retrieves replies to a specific parent message in a Slack conversation, using the channel ID and the parent message's timestamp (`ts`).

Fetch team info

Fetches comprehensive metadata about the current Slack team, or a specified team if the provided ID is accessible.

Find channels

Find channels in a Slack workspace by any criteria - name, topic, purpose, or description.

Lookup users by email

Retrieves the Slack user object for an active user by their registered email address; requires the users:read.

Find users

Find users in a Slack workspace by any criteria - email, name, display name, or other text.

Get Audit Action Types

Tool to retrieve information about action types available in the Slack Audit Logs API.

Get Audit Schemas

Tool to retrieve object schema information from the Slack Audit Logs API.

Fetch bot user information

Fetches information for a specified, existing Slack bot user; will not work for regular user accounts or other integration types.

Retrieve call information

Retrieves a point-in-time snapshot of a specific Slack call's information.

Get channel conversation preferences

Retrieves conversation preferences (e.

Get reminder information

Retrieves detailed information for an existing Slack reminder specified by its ID; this is a read-only operation.

Get remote file

Retrieve information about a remote file added to Slack via the files.

Retrieve team profile details

Retrieves all profile field definitions for a Slack team, optionally filtered by visibility, to understand the team's profile structure.

Get team DND status

Retrieves a user's current Do Not Disturb status.

Retrieve user presence

Retrieves a Slack user's current real-time presence (e.

Get workspace connections for channel

Tool to get all workspaces a channel is connected to within an Enterprise org.

Fetch workspace settings information

Retrieves detailed settings for a specific Slack workspace, primarily for administrators in an Enterprise Grid organization to view or audit workspace configurations.

Invite users to a Slack channel

Invites users to an existing Slack channel using their valid Slack User IDs.

Invite users 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.

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.

Join conversation by channel id

Joins an existing Slack conversation (public channel, private channel, or multi-person direct message) by its ID, if the authenticated user has permission.

Leave conversation channel

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.

List approved apps

Tool to list approved apps for an Enterprise Grid organization or workspace.

List app requests

Tool to list pending app installation requests for a team/workspace.

List admin emoji

List custom emoji across an Enterprise Grid organization.

List all channels

Lists conversations available to the user with various filters and search options.

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.

List approved workspace invite requests

List all approved workspace invite requests with pagination support.

List authorized teams

Obtains a paginated list of workspaces your org-wide app has been approved for.

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.

List team 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.

List denied workspace invite requests

Tool to list all denied workspace invite requests with details about who denied them and when.

List Enterprise teams

List all teams (workspaces) in a Slack Enterprise Grid organization with pagination support.

List Slack files

Lists files and their metadata within a Slack workspace, filterable by user, channel, timestamp, or type; returns metadata only, not file content.

List IDP groups linked to channel

Lists IDP groups that have restricted access to a private Slack channel.

List pending workspace invite requests

Tool to list all pending workspace invite requests.

List pinned items in a channel

Retrieves all messages and files pinned to a specified channel; the caller must have access to this channel.

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).

List remote files

Retrieve information about a team's remote files.

List Restricted Apps

Tool to list restricted apps for an org or workspace.

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 paginated.

List starred items

Lists items starred by a user.

List all users in a user group

Retrieves a list of all user IDs within a specified Slack user group, with an option to include users from disabled groups.

List user groups

Lists user groups in a Slack workspace, including user-created and default groups; results for large workspaces may be paginated.

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.

List workspace admins

Tool to list all admins on a given Slack workspace.

List workspace owners

Tool to list all owners on a given Slack workspace.

List admin users

Retrieves a paginated list of admin users for a specified Slack workspace.

Lookup Canvas Sections

Looks up section IDs in a Slack Canvas for use with targeted edit operations.

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.

Pin an item to a channel

Pins a message to a specified Slack channel; the message must not already be pinned.

Read Audit Logs

Read Slack Enterprise Grid Audit Logs (logins, admin changes, app installs, channel/privacy changes, etc.

Remove call participants

Registers participants removed from a Slack call.

Remove emoji

Tool to remove a custom emoji across an Enterprise Grid organization.

Remove reaction from item

Removes an emoji reaction from a message, file, or file comment in 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 deleting the actual external file.

Remove a star from an item

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 `channel` and `timestamp` (for a message).

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.

Remove user from workspace

Tool to remove a user from a Slack workspace.

Rename a conversation

Renames a Slack channel, automatically adjusting the new name to meet naming conventions (e.

Rename an emoji

Renames an existing custom emoji in a Slack workspace, updating all its instances.

Reset user sessions

Tool to wipe all valid sessions on all devices for a given user.

Restrict app installation

Restrict an app for installation on a workspace.

Retrieve a user's identity details

Retrieves the authenticated user's and their team's identity, with details varying based on OAuth scopes (e.

Retrieve conversation information

Retrieves metadata for a Slack conversation by ID (e.

Get conversation members

Retrieves a paginated list of active member IDs (not names, emails, or presence) for a specified Slack public channel, private channel, DM, or MPIM.

Retrieve 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.

Retrieve detailed file information

Retrieves detailed metadata and paginated comments for a specific Slack file ID; does not download file content.

Retrieve detailed user information

Retrieves comprehensive information for a valid Slack user ID, excluding message history and channel memberships.

Retrieve message permalink

Retrieves a permalink URL for a specific message in a Slack channel or conversation; the permalink respects Slack's privacy settings.

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.

Revoke a file's public url

Revokes a Slack file's public URL, making it private; this is a no-op if not already public and is irreversible.

Start RTM session

Starts a Real Time Messaging session and returns a WebSocket URL.

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.

Get SCIM service provider configuration

Tool to retrieve SCIM service provider configuration from Slack.

Search all content

Tool to search all messages and files.

Search messages

Workspace‑wide Slack message search with date ranges and filters.

Send ephemeral message

Sends an ephemeral message visible only to the specified `user` in a channel; other channel members cannot see it.

Share a me message in a channel

Sends a 'me message' (e.

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 all causes a `no_text` error.

Set admin user

Promotes an existing workspace member (guest, regular user, or owner) to admin status.

Set conversation preferences

Sets the posting permissions for a public or private channel in Slack.

Set a conversation's 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.

Set default channels

Tool to set the default channels of a workspace.

Set DND duration

Turns on Do Not Disturb mode for the current user, or changes its duration.

Set profile photo

This method allows the user to set their profile image.

Set conversation read cursor

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 within it.

Set conversation topic

Sets or updates the topic for a specified Slack conversation.

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 Slack's auto-away (e.

Set Slack user profile information

Updates a Slack user's profile, setting either individual fields or multiple fields via a JSON object.

Set workspace description

Set the description of a given workspace.

Set workspace icon

Sets the icon of a workspace.

Set workspace name

Set the name of a given Slack workspace.

Set workspace owner

Set an existing guest, regular user, or admin user to be a workspace owner.

Set workspaces for channel

Set the workspaces in an Enterprise grid org that connect to a channel.

Share a remote file in channels

Shares a remote file, which must already be registered with Slack, into specified Slack channels or direct message conversations.

Start call

Registers a new call in Slack using `calls.

Test authentication

Checks authentication and tells you who you are.

Unarchive channel

Reverses conversation archival.

Unpin message from channel

Unpins a message, identified by its timestamp, from a specified channel if the message is currently pinned there; this operation is destructive.

Update call information

Updates the title, join URL, or desktop app join URL for an existing Slack call identified by its ID.

Update an existing 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.

Update a Slack message

Updates a Slack message, identified by `channel` ID and `ts` timestamp, by modifying its `text`, `attachments`, or `blocks`; provide at least one content field, noting `attachments`/`blocks` are replaced if included (`[]` clears them).

Update Slack 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.

Update user group members

Replaces all members of an existing Slack User Group with a new list of valid user IDs.

Upload or create a file in Slack

Upload files, images, screenshots, documents, or any media to Slack channels or threads.

FAQ

Frequently asked questions

With a standalone Slack MCP server, the agents and LLMs can only access a fixed set of Slack tools tied to that server. However, with the Composio Tool Router, agents can dynamically load tools from Slack and many other apps based on the task at hand, all through a single MCP endpoint.

Yes, you can. Claude Code fully supports MCP integration. You get structured tool calling, message history handling, and model orchestration while Tool Router takes care of discovering and serving the right Slack tools.

Yes, absolutely. You can configure which Slack scopes and actions are allowed when connecting your account to Composio. You can also bring your own OAuth credentials or API configuration so you keep full control over what the agent can do.

All sensitive data such as tokens, keys, and configuration is fully encrypted at rest and in transit. Composio is SOC 2 Type 2 compliant and follows strict security practices so your Slack data and credentials are handled as safely as possible.

Start with Slack.It takes 30 seconds.

Managed auth, hosted MCP servers, and every Slack tool your agent needs.Free to start.

Start building