@kazuph/mcp-slack 1.2.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.
- package/LICENSE +21 -0
- package/README.md +166 -0
- package/bin/index.js +63 -0
- package/kazuph-mcp-slack-1.2.0.tgz +0 -0
- package/package.json +42 -0
- package/slack-mcp-server-1.2.0.tgz +0 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Dmitrii Korotovskii
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
# Slack MCP Server
|
|
2
|
+
|
|
3
|
+
Model Context Protocol (MCP) server for Slack Workspaces. The most powerful MCP Slack server — supports Stdio and SSE transports, proxy settings, DMs, Group DMs, Smart History fetch (by date or count), may work via OAuth or in complete stealth mode with no permissions and scopes in Workspace 😏.
|
|
4
|
+
|
|
5
|
+
> [!IMPORTANT]
|
|
6
|
+
> We need your support! Each month, over 30,000 engineers visit this repository, and more than 9,000 are already using it.
|
|
7
|
+
>
|
|
8
|
+
> If you appreciate the work our [contributors](https://github.com/korotovsky/slack-mcp-server/graphs/contributors) have put into this project, please consider giving the repository a star.
|
|
9
|
+
|
|
10
|
+
This feature-rich Slack MCP Server has:
|
|
11
|
+
- **Stealth and OAuth Modes**: Run the server without requiring additional permissions or bot installations (stealth mode), or use secure OAuth tokens for access without needing to refresh or extract tokens from the browser (OAuth mode).
|
|
12
|
+
- **Enterprise Workspaces Support**: Possibility to integrate with Enterprise Slack setups.
|
|
13
|
+
- **Channel and Thread Support with `#Name` `@Lookup`**: Fetch messages from channels and threads, including activity messages, and retrieve channels using their names (e.g., #general) as well as their IDs. Enhanced user lookup with display name and real name fallback (v1.2.0).
|
|
14
|
+
- **Smart History**: Fetch messages with pagination by date (d1, 7d, 1m) or message count.
|
|
15
|
+
- **Search Messages**: Search messages in channels, threads, and DMs using various filters like date, user, and content.
|
|
16
|
+
- **Safe Message Posting**: The `conversations_add_message` tool is disabled by default for safety. Enable it via an environment variable, with optional channel restrictions.
|
|
17
|
+
- **Channel Management**: Create and rename public channels, invite users, and set topics (new in v1.1.20).
|
|
18
|
+
- **Advanced User Resolution**: Resolve users by username, display name, real name, or email with Unicode normalization support for invisible characters (new in v1.2.0).
|
|
19
|
+
- **DM and Group DM support**: Retrieve direct messages and group direct messages.
|
|
20
|
+
- **Embedded user information**: Embed user information in messages, for better context.
|
|
21
|
+
- **Cache support**: Cache users and channels for faster access.
|
|
22
|
+
- **Stdio/SSE Transports & Proxy Support**: Use the server with any MCP client that supports Stdio or SSE transports, and configure it to route outgoing requests through a proxy if needed.
|
|
23
|
+
|
|
24
|
+
### Analytics Demo
|
|
25
|
+
|
|
26
|
+

|
|
27
|
+
|
|
28
|
+
### Add Message Demo
|
|
29
|
+
|
|
30
|
+

|
|
31
|
+
|
|
32
|
+
## Tools
|
|
33
|
+
|
|
34
|
+
### 1. conversations_history:
|
|
35
|
+
Get messages from the channel (or DM) by channel_id, the last row/column in the response is used as 'cursor' parameter for pagination if not empty
|
|
36
|
+
- **Parameters:**
|
|
37
|
+
- `channel_id` (string, required): - `channel_id` (string): ID of the channel in format Cxxxxxxxxxx or its name starting with `#...` or `@...` aka `#general` or `@username_dm`.
|
|
38
|
+
- `include_activity_messages` (boolean, default: false): If true, the response will include activity messages such as `channel_join` or `channel_leave`. Default is boolean false.
|
|
39
|
+
- `cursor` (string, optional): Cursor for pagination. Use the value of the last row and column in the response as next_cursor field returned from the previous request.
|
|
40
|
+
- `limit` (string, default: "1d"): Limit of messages to fetch in format of maximum ranges of time (e.g. 1d - 1 day, 30d - 30 days, 90d - 90 days which is a default limit for free tier history) or number of messages (e.g. 50). Must be empty when 'cursor' is provided.
|
|
41
|
+
|
|
42
|
+
### 2. conversations_replies:
|
|
43
|
+
Get a thread of messages posted to a conversation by channelID and `thread_ts`, the last row/column in the response is used as `cursor` parameter for pagination if not empty.
|
|
44
|
+
- **Parameters:**
|
|
45
|
+
- `channel_id` (string, required): ID of the channel in format `Cxxxxxxxxxx` or its name starting with `#...` or `@...` aka `#general` or `@username_dm`.
|
|
46
|
+
- `thread_ts` (string, required): Unique identifier of either a thread’s parent message or a message in the thread. ts must be the timestamp in format `1234567890.123456` of an existing message with 0 or more replies.
|
|
47
|
+
- `include_activity_messages` (boolean, default: false): If true, the response will include activity messages such as 'channel_join' or 'channel_leave'. Default is boolean false.
|
|
48
|
+
- `cursor` (string, optional): Cursor for pagination. Use the value of the last row and column in the response as next_cursor field returned from the previous request.
|
|
49
|
+
- `limit` (string, default: "1d"): Limit of messages to fetch in format of maximum ranges of time (e.g. 1d - 1 day, 30d - 30 days, 90d - 90 days which is a default limit for free tier history) or number of messages (e.g. 50). Must be empty when 'cursor' is provided.
|
|
50
|
+
|
|
51
|
+
### 3. conversations_add_message
|
|
52
|
+
Add a message to a public channel, private channel, or direct message (DM, or IM) conversation by channel_id and thread_ts.
|
|
53
|
+
|
|
54
|
+
> **Note:** Posting messages is disabled by default for safety. To enable, set the `SLACK_MCP_ADD_MESSAGE_TOOL` environment variable. If set to a comma-separated list of channel IDs, posting is enabled only for those specific channels. See the Environment Variables section below for details.
|
|
55
|
+
|
|
56
|
+
- **Parameters:**
|
|
57
|
+
- `channel_id` (string, required): ID of the channel in format `Cxxxxxxxxxx` or its name starting with `#...` or `@...` aka `#general` or `@username_dm`.
|
|
58
|
+
- `thread_ts` (string, optional): Unique identifier of either a thread’s parent message or a message in the thread_ts must be the timestamp in format `1234567890.123456` of an existing message with 0 or more replies. Optional, if not provided the message will be added to the channel itself, otherwise it will be added to the thread.
|
|
59
|
+
- `payload` (string, required): Message payload in specified content_type format. Example: 'Hello, world!' for text/plain or '# Hello, world!' for text/markdown.
|
|
60
|
+
- `content_type` (string, default: "text/markdown"): Content type of the message. Default is 'text/markdown'. Allowed values: 'text/markdown', 'text/plain'.
|
|
61
|
+
|
|
62
|
+
### 4. conversations_search_messages
|
|
63
|
+
Search messages in a public channel, private channel, or direct message (DM, or IM) conversation using filters. All filters are optional, if not provided then search_query is required.
|
|
64
|
+
- **Parameters:**
|
|
65
|
+
- `search_query` (string, optional): Search query to filter messages. Example: `marketing report`.
|
|
66
|
+
- `filter_in_channel` (string, optional): Filter messages in a specific channel by its ID or name. Example: `C1234567890` or `#general`. If not provided, all channels will be searched.
|
|
67
|
+
- `filter_in_im_or_mpim` (string, optional): Filter messages in a direct message (DM) or multi-person direct message (MPIM) conversation by its ID or name. Example: `D1234567890` or `@username_dm`. If not provided, all DMs and MPIMs will be searched.
|
|
68
|
+
- `filter_users_with` (string, optional): Filter messages with a specific user by their ID or display name in threads and DMs. Example: `U1234567890` or `@username`. If not provided, all threads and DMs will be searched.
|
|
69
|
+
- `filter_users_from` (string, optional): Filter messages from a specific user by their ID or display name. Example: `U1234567890` or `@username`. If not provided, all users will be searched.
|
|
70
|
+
- `filter_date_before` (string, optional): Filter messages sent before a specific date in format `YYYY-MM-DD`. Example: `2023-10-01`, `July`, `Yesterday` or `Today`. If not provided, all dates will be searched.
|
|
71
|
+
- `filter_date_after` (string, optional): Filter messages sent after a specific date in format `YYYY-MM-DD`. Example: `2023-10-01`, `July`, `Yesterday` or `Today`. If not provided, all dates will be searched.
|
|
72
|
+
- `filter_date_on` (string, optional): Filter messages sent on a specific date in format `YYYY-MM-DD`. Example: `2023-10-01`, `July`, `Yesterday` or `Today`. If not provided, all dates will be searched.
|
|
73
|
+
- `filter_date_during` (string, optional): Filter messages sent during a specific period in format `YYYY-MM-DD`. Example: `July`, `Yesterday` or `Today`. If not provided, all dates will be searched.
|
|
74
|
+
- `filter_threads_only` (boolean, default: false): If true, the response will include only messages from threads. Default is boolean false.
|
|
75
|
+
- `cursor` (string, default: ""): Cursor for pagination. Use the value of the last row and column in the response as next_cursor field returned from the previous request.
|
|
76
|
+
- `limit` (number, default: 20): The maximum number of items to return. Must be an integer between 1 and 100.
|
|
77
|
+
|
|
78
|
+
### 5. channels_list:
|
|
79
|
+
Get list of channels
|
|
80
|
+
- **Parameters:**
|
|
81
|
+
- `channel_types` (string, required): Comma-separated channel types. Allowed values: `mpim`, `im`, `public_channel`, `private_channel`. Example: `public_channel,private_channel,im`
|
|
82
|
+
- `sort` (string, optional): Type of sorting. Allowed values: `popularity` - sort by number of members/participants in each channel.
|
|
83
|
+
- `limit` (number, default: 100): The maximum number of items to return. Must be an integer between 1 and 1000 (maximum 999).
|
|
84
|
+
- `cursor` (string, optional): Cursor for pagination. Use the value of the last row and column in the response as next_cursor field returned from the previous request.
|
|
85
|
+
|
|
86
|
+
### 6. conversations_create:
|
|
87
|
+
Create a new public channel
|
|
88
|
+
- **Parameters:**
|
|
89
|
+
- `name` (string, required): Name of the channel to create. Must be 80 characters or less.
|
|
90
|
+
|
|
91
|
+
### 7. conversations_rename:
|
|
92
|
+
Rename a public channel
|
|
93
|
+
- **Parameters:**
|
|
94
|
+
- `channel_id` (string, required): ID of the channel to rename in format `Cxxxxxxxxxx` or its name starting with `#...` aka `#general`
|
|
95
|
+
- `name` (string, required): New name for the channel. Must be 80 characters or less.
|
|
96
|
+
|
|
97
|
+
### 8. conversations_invite:
|
|
98
|
+
Invite users to a public channel
|
|
99
|
+
- **Parameters:**
|
|
100
|
+
- `channel_id` (string, required): ID of the channel in format `Cxxxxxxxxxx` or its name starting with `#...` aka `#general`
|
|
101
|
+
- `users` (string, required): Comma-separated list of user IDs (U1234567890) or usernames (@username) to invite
|
|
102
|
+
|
|
103
|
+
### 9. conversations_set_topic:
|
|
104
|
+
Set the topic/description of a public channel
|
|
105
|
+
- **Parameters:**
|
|
106
|
+
- `channel_id` (string, required): ID of the channel in format `Cxxxxxxxxxx` or its name starting with `#...` aka `#general`
|
|
107
|
+
- `topic` (string, required): New topic/description for the channel
|
|
108
|
+
|
|
109
|
+
### 10. users_resolve:
|
|
110
|
+
Resolve a user by their username, display name, real name, or email with Unicode normalization support. This tool handles invisible characters (zero-width spaces) that may appear in user names and automatically falls back to real name when display name is empty.
|
|
111
|
+
- **Parameters:**
|
|
112
|
+
- `query` (string, required): The search query (username, display name, real name, or email). Can start with @ but it's not required. Supports Unicode normalization for invisible characters.
|
|
113
|
+
- `search_type` (string, optional, default: `auto`): Type of search to perform. Options:
|
|
114
|
+
- `username`: Search by Slack username only
|
|
115
|
+
- `display_name`: Search by display name (falls back to real name if display name is empty)
|
|
116
|
+
- `real_name`: Search by real name only
|
|
117
|
+
- `email`: Search by email address only
|
|
118
|
+
- `auto`: Searches all fields with priority: username exact → display name exact → real name exact → email exact → partial matches
|
|
119
|
+
- **Returns:** CSV format with user information including userID, userName, realName, displayName, email, matchType, and isBot status
|
|
120
|
+
|
|
121
|
+
**Note:** User resolution improvements in v1.2.0 also enhance the `conversations_invite` and `conversations_add_message` tools, which now support user lookup by display name and real name in addition to username.
|
|
122
|
+
|
|
123
|
+
## Setup Guide
|
|
124
|
+
|
|
125
|
+
- [Authentication Setup](docs/01-authentication-setup.md)
|
|
126
|
+
- [Installation](docs/02-installation.md)
|
|
127
|
+
- [Configuration and Usage](docs/03-configuration-and-usage.md)
|
|
128
|
+
|
|
129
|
+
### Environment Variables (Quick Reference)
|
|
130
|
+
|
|
131
|
+
| Variable | Required? | Default | Description |
|
|
132
|
+
|--------------------------------|-----------|---------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|
133
|
+
| `SLACK_MCP_XOXC_TOKEN` | Yes* | `nil` | Slack browser token (`xoxc-...`) |
|
|
134
|
+
| `SLACK_MCP_XOXD_TOKEN` | Yes* | `nil` | Slack browser cookie `d` (`xoxd-...`) |
|
|
135
|
+
| `SLACK_MCP_XOXP_TOKEN` | Yes* | `nil` | User OAuth token (`xoxp-...`) — alternative to xoxc/xoxd |
|
|
136
|
+
| `SLACK_MCP_PORT` | No | `13080` | Port for the MCP server to listen on |
|
|
137
|
+
| `SLACK_MCP_HOST` | No | `127.0.0.1` | Host for the MCP server to listen on |
|
|
138
|
+
| `SLACK_MCP_SSE_API_KEY` | No | `nil` | Bearer token for SSE transport |
|
|
139
|
+
| `SLACK_MCP_PROXY` | No | `nil` | Proxy URL for outgoing requests |
|
|
140
|
+
| `SLACK_MCP_USER_AGENT` | No | `nil` | Custom User-Agent (for Enterprise Slack environments) |
|
|
141
|
+
| `SLACK_MCP_SERVER_CA` | No | `nil` | Path to CA certificate |
|
|
142
|
+
| `SLACK_MCP_SERVER_CA_INSECURE` | No | `false` | Trust all insecure requests (NOT RECOMMENDED) |
|
|
143
|
+
| `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. |
|
|
146
|
+
|
|
147
|
+
*You need either `xoxp` **or** both `xoxc`/`xoxd` tokens for authentication.
|
|
148
|
+
|
|
149
|
+
### Debugging Tools
|
|
150
|
+
|
|
151
|
+
```bash
|
|
152
|
+
# Run the inspector with stdio transport
|
|
153
|
+
npx @modelcontextprotocol/inspector go run mcp/mcp-server.go --transport stdio
|
|
154
|
+
|
|
155
|
+
# View logs
|
|
156
|
+
tail -n 20 -f ~/Library/Logs/Claude/mcp*.log
|
|
157
|
+
```
|
|
158
|
+
|
|
159
|
+
## Security
|
|
160
|
+
|
|
161
|
+
- Never share API tokens
|
|
162
|
+
- Keep .env files secure and private
|
|
163
|
+
|
|
164
|
+
## License
|
|
165
|
+
|
|
166
|
+
Licensed under MIT - see [LICENSE](LICENSE) file. This is not an official Slack product.
|
package/bin/index.js
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
const fs = require('fs');
|
|
4
|
+
const path = require('path');
|
|
5
|
+
const childProcess = require('child_process');
|
|
6
|
+
|
|
7
|
+
const BINARY_MAP = {
|
|
8
|
+
darwin_x64: { name: '@kazuph/mcp-slack-darwin-amd64', binaryName: 'slack-mcp-server-darwin-amd64', suffix: '' },
|
|
9
|
+
darwin_arm64: { name: '@kazuph/mcp-slack-darwin-arm64', binaryName: 'slack-mcp-server-darwin-arm64', suffix: '' },
|
|
10
|
+
linux_x64: { name: '@kazuph/mcp-slack-linux-amd64', binaryName: 'slack-mcp-server-linux-amd64', suffix: '' },
|
|
11
|
+
linux_arm64: { name: '@kazuph/mcp-slack-linux-arm64', binaryName: 'slack-mcp-server-linux-arm64', suffix: '' },
|
|
12
|
+
win32_x64: { name: '@kazuph/mcp-slack-windows-amd64', binaryName: 'slack-mcp-server-windows-amd64', suffix: '.exe' },
|
|
13
|
+
win32_arm64: { name: '@kazuph/mcp-slack-windows-arm64', binaryName: 'slack-mcp-server-windows-arm64', suffix: '.exe' },
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
function resolveBinaryPath() {
|
|
17
|
+
// If DXT installation then we fix empty variables, it's a DXT bug.
|
|
18
|
+
if (process.env.SLACK_MCP_DXT) {
|
|
19
|
+
if (process.env.SLACK_MCP_XOXC_TOKEN === '${user_config.xoxc_token}') {
|
|
20
|
+
process.env.SLACK_MCP_XOXC_TOKEN = '';
|
|
21
|
+
}
|
|
22
|
+
if (process.env.SLACK_MCP_XOXD_TOKEN === '${user_config.xoxd_token}') {
|
|
23
|
+
process.env.SLACK_MCP_XOXD_TOKEN = '';
|
|
24
|
+
}
|
|
25
|
+
if (process.env.SLACK_MCP_XOXP_TOKEN === '${user_config.xoxp_token}') {
|
|
26
|
+
process.env.SLACK_MCP_XOXP_TOKEN = '';
|
|
27
|
+
}
|
|
28
|
+
if (process.env.SLACK_MCP_ADD_MESSAGE_TOOL === '${user_config.add_message_tool}') {
|
|
29
|
+
process.env.SLACK_MCP_ADD_MESSAGE_TOOL = '';
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
const key = `${process.platform}_${process.arch}`;
|
|
34
|
+
const binary = BINARY_MAP[key];
|
|
35
|
+
if (!binary) {
|
|
36
|
+
throw new Error(`Could not resolve binary for platform/arch: ${process.platform}/${process.arch}`);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
if (process.env.SLACK_MCP_DXT) {
|
|
40
|
+
return require.resolve(path.join(__dirname, `${binary.binaryName}${binary.suffix}`));
|
|
41
|
+
} else {
|
|
42
|
+
return require.resolve(`${binary.name}/bin/${binary.binaryName}${binary.suffix}`);
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
const binPath = resolveBinaryPath();
|
|
47
|
+
|
|
48
|
+
// Workaround for https://github.com/anthropics/dxt/issues/13
|
|
49
|
+
if (process.env.SLACK_MCP_DXT) {
|
|
50
|
+
const stats = fs.statSync(binPath);
|
|
51
|
+
const execMask = fs.constants.S_IXUSR
|
|
52
|
+
| fs.constants.S_IXGRP
|
|
53
|
+
| fs.constants.S_IXOTH;
|
|
54
|
+
|
|
55
|
+
if ((stats.mode & execMask) !== execMask) {
|
|
56
|
+
const newMode = stats.mode | execMask;
|
|
57
|
+
fs.chmodSync(binPath, newMode);
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
childProcess.execFileSync(binPath, process.argv.slice(2), {
|
|
62
|
+
stdio: 'inherit',
|
|
63
|
+
});
|
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@kazuph/mcp-slack",
|
|
3
|
+
"version": "1.2.0",
|
|
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
|
+
"main": "bin/index.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"mcp-slack": "bin/index.js"
|
|
8
|
+
},
|
|
9
|
+
"optionalDependencies": {
|
|
10
|
+
"@kazuph/mcp-slack-darwin-amd64": "1.2.0",
|
|
11
|
+
"@kazuph/mcp-slack-darwin-arm64": "1.2.0",
|
|
12
|
+
"@kazuph/mcp-slack-linux-amd64": "1.2.0",
|
|
13
|
+
"@kazuph/mcp-slack-linux-arm64": "1.2.0",
|
|
14
|
+
"@kazuph/mcp-slack-windows-amd64": "1.2.0",
|
|
15
|
+
"@kazuph/mcp-slack-windows-arm64": "1.2.0"
|
|
16
|
+
},
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "git+https://github.com/kazuph/mcp-slack.git"
|
|
20
|
+
},
|
|
21
|
+
"keywords": [
|
|
22
|
+
"mcp",
|
|
23
|
+
"slack",
|
|
24
|
+
"slack-api",
|
|
25
|
+
"model context protocol",
|
|
26
|
+
"model",
|
|
27
|
+
"context",
|
|
28
|
+
"protocol"
|
|
29
|
+
],
|
|
30
|
+
"author": {
|
|
31
|
+
"name": "kazuph",
|
|
32
|
+
"url": "https://github.com/kazuph"
|
|
33
|
+
},
|
|
34
|
+
"license": "MIT",
|
|
35
|
+
"bugs": {
|
|
36
|
+
"url": "https://github.com/kazuph/mcp-slack/issues"
|
|
37
|
+
},
|
|
38
|
+
"homepage": "https://github.com/kazuph/mcp-slack#readme",
|
|
39
|
+
"publishConfig": {
|
|
40
|
+
"access": "public"
|
|
41
|
+
}
|
|
42
|
+
}
|
|
Binary file
|