npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@node2flow/slack-mcp

v1.0.1

Published

MCP server for Slack Web API — send messages, manage channels, search, reactions, files, pins, bookmarks, and more through 38 tools

Readme

Slack MCP Server

smithery badge npm version License: MIT

MCP (Model Context Protocol) server for Slack Web API. Send messages, manage channels, search content, handle files, and more through 38 tools.

Works with Claude Desktop, Cursor, VS Code, and any MCP client.


Quick Start

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "slack": {
      "command": "npx",
      "args": ["-y", "@node2flow/slack-mcp"],
      "env": {
        "SLACK_BOT_TOKEN": "xoxb-your-bot-token"
      }
    }
  }
}

Cursor / VS Code

Add to MCP settings:

{
  "mcpServers": {
    "slack": {
      "command": "npx",
      "args": ["-y", "@node2flow/slack-mcp"],
      "env": {
        "SLACK_BOT_TOKEN": "xoxb-your-bot-token"
      }
    }
  }
}

HTTP Mode (Streamable HTTP)

For remote deployment or shared access:

SLACK_BOT_TOKEN=xoxb-xxx npx @node2flow/slack-mcp --http

Server starts on port 3000 (configurable via PORT env var). MCP endpoint: http://localhost:3000/mcp


Configuration

| Environment Variable | Required | Description | |---|---|---| | SLACK_BOT_TOKEN | Yes | Slack Bot User OAuth Token (xoxb-...) | | PORT | No | Port for HTTP server (default: 3000, only used with --http) |


All Tools (38 tools)

Messages (7 tools)

| Tool | Description | |---|---| | slack_send_message | Send a message to a channel or DM | | slack_update_message | Update an existing message | | slack_delete_message | Delete a message | | slack_schedule_message | Schedule a message for later | | slack_delete_scheduled_message | Cancel a scheduled message | | slack_list_scheduled_messages | List pending scheduled messages | | slack_get_permalink | Get permanent URL for a message |

Conversations (12 tools)

| Tool | Description | |---|---| | slack_list_channels | List channels in workspace | | slack_get_channel_info | Get channel details | | slack_get_channel_history | Get messages from a channel | | slack_get_thread_replies | Get replies in a thread | | slack_get_channel_members | List members of a channel | | slack_create_channel | Create a new channel | | slack_archive_channel | Archive a channel | | slack_invite_to_channel | Invite users to a channel | | slack_kick_from_channel | Remove a user from a channel | | slack_join_channel | Join a public channel | | slack_set_channel_topic | Set the channel topic | | slack_open_conversation | Open or resume a DM/group DM |

Users (2 tools)

| Tool | Description | |---|---| | slack_list_users | List all workspace members | | slack_get_user_info | Get user profile details |

Reactions (3 tools)

| Tool | Description | |---|---| | slack_add_reaction | Add emoji reaction to a message | | slack_remove_reaction | Remove emoji reaction | | slack_get_reactions | Get reactions on a message |

Search (2 tools)

| Tool | Description | |---|---| | slack_search_messages | Search messages (supports in:#channel from:@user has:reaction) | | slack_search_files | Search files in workspace |

Files (3 tools)

| Tool | Description | |---|---| | slack_upload_file | Upload text content as a file | | slack_list_files | List files in workspace | | slack_delete_file | Delete a file |

Pins (3 tools)

| Tool | Description | |---|---| | slack_pin_message | Pin a message to a channel | | slack_unpin_message | Unpin a message | | slack_list_pins | List pinned items in a channel |

Bookmarks (4 tools)

| Tool | Description | |---|---| | slack_add_bookmark | Add a bookmark link to a channel | | slack_edit_bookmark | Edit a bookmark | | slack_remove_bookmark | Remove a bookmark | | slack_list_bookmarks | List bookmarks in a channel |

Team (1 tool)

| Tool | Description | |---|---| | slack_get_team_info | Get workspace/team information |

Emoji (1 tool)

| Tool | Description | |---|---| | slack_list_emoji | List custom emoji in workspace |


Requirements

  • Node.js 18+
  • Slack Bot Token (xoxb-...)

How to Create a Slack App and Get Bot Token

  1. Go to api.slack.com/apps and click Create New App
  2. Choose From scratch, enter a name, and select your workspace
  3. Go to OAuth & Permissions in the sidebar
  4. Under Bot Token Scopes, add these scopes:
bookmarks:read        bookmarks:write       channels:history
channels:join         channels:manage       channels:read
chat:write            chat:write.public     emoji:read
files:read            files:write           groups:history
groups:read           groups:write          im:history
im:read               im:write              mpim:history
mpim:read             mpim:write            pins:read
pins:write            reactions:read        reactions:write
search:read           team:read             users:read
  1. Click Install to Workspace and authorize
  2. Copy the Bot User OAuth Token (starts with xoxb-)
  3. Use it as SLACK_BOT_TOKEN

Note: Search tools (slack_search_messages, slack_search_files) require a User Token (xoxp-...) instead of a Bot Token. If you only need search, add a User Token scope for search:read.

Free Plan Limitation: Slack Free plan limits message history to 90 days and allows max 10 app integrations.


For Developers

git clone https://github.com/node2flow-th/slack-mcp-community.git
cd slack-mcp-community
npm install
npm run build

# Run in stdio mode
SLACK_BOT_TOKEN=xoxb-xxx npm start

# Run in HTTP mode
SLACK_BOT_TOKEN=xoxb-xxx npm start -- --http

License

MIT License - see LICENSE

Copyright (c) 2026 Node2Flow

Links