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

@wbjeong/slack-max-api-mcp

v1.0.0

Published

Slack MCP server (stdio) for Codex and Claude Code

Downloads

55

Readme

Slack Max API MCP Server

Slack Web API를 최대한 활용하도록 만든 stdio MCP 서버입니다.
Codex CLIClaude Code에 바로 연결할 수 있습니다.

포함 범위

  1. 고정 도구 12개
  • search_messages_files
  • search_users
  • search_channels
  • send_message
  • read_channel
  • read_thread
  • create_canvas
  • update_canvas
  • read_canvas
  • read_user_profile
  • slack_api_call (임의 Web API 메서드 호출)
  • slack_http_api_call (SCIM/Audit/Legal Holds 포함 범용 HTTP 호출)
  1. 카탈로그 기반 메서드 도구 자동 등록
  • data/slack-catalog.json의 Web API 메서드(현재 304개)를 자동 MCP 도구로 등록
  • 도구명 형식: slack_method_<method_name>
    • 예: chat.postMessage -> slack_method_chat_postMessage
  1. 문서 자동 생성

준비

  1. Node.js 20+
  2. Slack 토큰
  • 기본: xoxb bot token
  • 필요시 xoxp user token 병행
  • Admin/SCIM/Audit API는 별도 권한/토큰 필요
  • 토큰은 기본적으로 프로젝트 루트의 .env.example에서 자동 로드됨

설치/생성/실행

npm install
npm run build:catalog
npm run start

Codex CLI 연결

codex mcp add slack-max -- node C:\code_test\test22\src\slack-mcp-server.js

확인:

codex mcp list
codex mcp get slack-max

Claude Code 연결

claude mcp add slack-max -- node C:\code_test\test22\src\slack-mcp-server.js

확인:

claude mcp list
claude mcp get slack-max

메서드 도구 제어용 환경변수

  • SLACK_CATALOG_PATH
    카탈로그 JSON 경로 (기본: data/slack-catalog.json)
  • SLACK_ENABLE_METHOD_TOOLS
    false면 자동 메서드 도구 등록 비활성화
  • SLACK_METHOD_TOOL_PREFIX
    자동 도구명 prefix (기본: slack_method)
  • SLACK_MAX_METHOD_TOOLS
    0이면 전체 등록, 양수면 앞에서 N개만 등록

권장 scope (현재 고정 도구 10개 기준 최대 사용)

  • chat.write
  • channels.read, groups.read, im.read, mpim.read
  • channels.history, groups.history, im.history, mpim.history
  • users.read, users.profile.read, users.read.email
  • canvases.read, canvases.write
  • search.read

참고: 전체 Slack API 100%는 단일 토큰으로 불가하며, Admin/SCIM/Audit/Legal Holds는 조직/권한 제약이 있습니다.