@kazuph/mcp-slack 1.2.2 → 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +6 -3
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -133,6 +133,7 @@ Resolve a user by their username, display name, real name, or email with Unicode
133
133
  | `SLACK_MCP_XOXC_TOKEN` | Yes* | `nil` | Slack browser token (`xoxc-...`) |
134
134
  | `SLACK_MCP_XOXD_TOKEN` | Yes* | `nil` | Slack browser cookie `d` (`xoxd-...`) |
135
135
  | `SLACK_MCP_XOXP_TOKEN` | Yes* | `nil` | User OAuth token (`xoxp-...`) — alternative to xoxc/xoxd |
136
+ | `SLACK_MCP_XOXB_TOKEN` | Yes* | `nil` | Bot token (`xoxb-...`) — alternative to xoxp. Note: Bot tokens have limited access (invited channels only, no search) |
136
137
  | `SLACK_MCP_PORT` | No | `13080` | Port for the MCP server to listen on |
137
138
  | `SLACK_MCP_HOST` | No | `127.0.0.1` | Host for the MCP server to listen on |
138
139
  | `SLACK_MCP_SSE_API_KEY` | No | `nil` | Bearer token for SSE transport |
@@ -141,10 +142,12 @@ Resolve a user by their username, display name, real name, or email with Unicode
141
142
  | `SLACK_MCP_SERVER_CA` | No | `nil` | Path to CA certificate |
142
143
  | `SLACK_MCP_SERVER_CA_INSECURE` | No | `false` | Trust all insecure requests (NOT RECOMMENDED) |
143
144
  | `SLACK_MCP_ADD_MESSAGE_TOOL` | No | `nil` | Enable message posting via `conversations_add_message` by setting it to true for all channels, a comma-separated list of channel IDs to whitelist specific channels, or use `!` before a channel ID to allow all except specified ones, while an empty value disables posting by default. |
144
- | `SLACK_MCP_USERS_CACHE` | No | `.users_cache.json` | Path to the users cache file. Used to cache Slack user information to avoid repeated API calls on startup. |
145
- | `SLACK_MCP_CHANNELS_CACHE` | No | `.channels_cache_v2.json` | Path to the channels cache file. Used to cache Slack channel information to avoid repeated API calls on startup. |
145
+ | `SLACK_MCP_USERS_CACHE` | No | OS cache dir* | Path to the users cache file. Used to cache Slack user information to avoid repeated API calls on startup. |
146
+ | `SLACK_MCP_CHANNELS_CACHE` | No | OS cache dir* | Path to the channels cache file. Used to cache Slack channel information to avoid repeated API calls on startup. |
146
147
 
147
- *You need either `xoxp` **or** both `xoxc`/`xoxd` tokens for authentication.
148
+ *Cache files are stored in the OS-specific cache directory: `~/Library/Caches/slack-mcp-server/` (macOS), `~/.cache/slack-mcp-server/` (Linux), or `%LocalAppData%/slack-mcp-server/` (Windows).
149
+
150
+ *You need one of: `xoxp` (user), `xoxb` (bot), or both `xoxc`/`xoxd` tokens for authentication.
148
151
 
149
152
  ### Debugging Tools
150
153
 
package/package.json CHANGED
@@ -1,18 +1,18 @@
1
1
  {
2
2
  "name": "@kazuph/mcp-slack",
3
- "version": "1.2.2",
3
+ "version": "1.3.0",
4
4
  "description": "Model Context Protocol (MCP) server for Slack Workspaces. This integration supports both Stdio and SSE transports, proxy settings and does not require any permissions or bots being created or approved by Workspace admins",
5
5
  "main": "bin/index.js",
6
6
  "bin": {
7
7
  "mcp-slack": "bin/index.js"
8
8
  },
9
9
  "optionalDependencies": {
10
- "@kazuph/mcp-slack-darwin-amd64": "1.2.1",
11
- "@kazuph/mcp-slack-darwin-arm64": "1.2.1",
12
- "@kazuph/mcp-slack-linux-amd64": "1.2.1",
13
- "@kazuph/mcp-slack-linux-arm64": "1.2.1",
14
- "@kazuph/mcp-slack-windows-amd64": "1.2.1",
15
- "@kazuph/mcp-slack-windows-arm64": "1.2.1"
10
+ "@kazuph/mcp-slack-darwin-amd64": "1.3.0",
11
+ "@kazuph/mcp-slack-darwin-arm64": "1.3.0",
12
+ "@kazuph/mcp-slack-linux-amd64": "1.3.0",
13
+ "@kazuph/mcp-slack-linux-arm64": "1.3.0",
14
+ "@kazuph/mcp-slack-windows-amd64": "1.3.0",
15
+ "@kazuph/mcp-slack-windows-arm64": "1.3.0"
16
16
  },
17
17
  "repository": {
18
18
  "type": "git",