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

@neuroequalityorg/mcp-slack

v1.0.0

Published

MCP server for Slack API integration

Readme

@neuroequalityorg/mcp-slack

MCP (Model Context Protocol) server for Slack API integration. Enables AI assistants to interact with Slack workspaces.

Installation

npm install -g @neuroequalityorg/mcp-slack

Or use with npx:

npx @neuroequalityorg/mcp-slack

Configuration

Set your Slack Bot Token as an environment variable:

export SLACK_BOT_TOKEN=xoxb-your-bot-token

Required Slack App Permissions

Your Slack app needs the following OAuth scopes:

  • channels:read - List channels
  • channels:write - Create channels
  • channels:history - Read channel history
  • chat:write - Send messages
  • groups:read - List private channels
  • groups:write - Create private channels
  • groups:history - Read private channel history
  • im:history - Read direct message history
  • mpim:history - Read group DM history
  • search:read - Search messages
  • users:read - List users
  • users:read.email - Read user emails

Usage with Claude Desktop

Add to your Claude Desktop config (~/.config/claude/claude_desktop_config.json):

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

Available Tools

send_message

Send a message to a Slack channel or user.

Parameters:

  • channel (required): Channel ID or name
  • text (required): Message text to send
  • thread_ts (optional): Thread timestamp to reply in a thread

list_channels

List all channels in the Slack workspace.

Parameters:

  • types (optional): Channel types (default: "public_channel,private_channel")
  • limit (optional): Max results (default: 100)
  • cursor (optional): Pagination cursor

list_users

List all users in the Slack workspace.

Parameters:

  • limit (optional): Max results (default: 100)
  • cursor (optional): Pagination cursor

search_messages

Search for messages in Slack.

Parameters:

  • query (required): Search query (supports Slack search modifiers)
  • count (optional): Number of results (default: 20)
  • sort (optional): "score" or "timestamp"
  • sort_dir (optional): "asc" or "desc"

create_channel

Create a new Slack channel.

Parameters:

  • name (required): Channel name (lowercase, no spaces)
  • is_private (optional): Create as private channel

get_channel_history

Get message history from a Slack channel.

Parameters:

  • channel (required): Channel ID
  • limit (optional): Number of messages (default: 50)
  • oldest (optional): Messages after this Unix timestamp
  • latest (optional): Messages before this Unix timestamp
  • cursor (optional): Pagination cursor

License

MIT

Author

NeuralQuantum - [email protected]