Skip to content
MCP-BridgeMCP-Bridge
Communication

Slack API MCP Config

Send messages, manage channels, and integrate Slack notifications into your AI agent workflows.

Config URL

Use this URL in any MCP-compatible client to fetch the config automatically.

https://mcpbridge.org/config/slack.json

One-Click Install

Copy the snippet for your MCP client and paste it in — zero editing required.

Claude Desktop

Add to claude_desktop_config.json

{
  "mcpServers": {
    "slack": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-slack"
      ],
      "env": {
        "SLACK_BOT_TOKEN": "xoxb-..."
      }
    }
  }
}

Cursor

Settings → MCP Servers → Add

{
  "mcpServers": {
    "slack": {
      "url": "https://mcpbridge.org/config/slack.json"
    }
  }
}

VS Code

Use with MCP extension

{
  "mcpServers": {
    "slack": {
      "url": "https://mcpbridge.org/config/slack.json"
    }
  }
}

Configuration JSON

Use curl https://mcpbridge.org/config/slack.json to fetch programmatically.

{
  "mcpServers": {
    "slack": {
      "command": "npx",
      "args": ["-y","@modelcontextprotocol/server-slack"],
      "env": {
      "SLACK_BOT_TOKEN": "xoxb-..."
}
    }
  }
}

How to Use

Claude Desktop

Paste the config JSON into your claude_desktop_config.json.

Full instructions →

Cursor

Go to Cursor Settings → MCP Servers → Add with the JSON above.

CLI / curl

Fetch the config programmatically:

curl https://mcpbridge.org/config/slack.json

Environment Variables

SLACK_BOT_TOKEN

Replace xoxb-... with your actual slack bot token

Endpoints

GET/conversations.list

List all channels

POST/chat.postMessage

Send a message

GET/users.list

List all users