@codo-tech/slack-mcp-server 1.1.0 → 1.1.1

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/bin/index.js +8 -8
  2. package/package.json +4 -4
package/bin/index.js CHANGED
@@ -5,12 +5,12 @@ const path = require('path');
5
5
  const childProcess = require('child_process');
6
6
 
7
7
  const BINARY_MAP = {
8
- darwin_x64: { name: '@codo-tech/slack-mcp-server-darwin-amd64', suffix: '' },
9
- darwin_arm64: { name: '@codo-tech/slack-mcp-server-darwin-arm64', suffix: '' },
10
- linux_x64: { name: '@codo-tech/slack-mcp-server-linux-amd64', suffix: '' },
11
- linux_arm64: { name: '@codo-tech/slack-mcp-server-linux-arm64', suffix: '' },
12
- win32_x64: { name: '@codo-tech/slack-mcp-server-windows-amd64', suffix: '.exe' },
13
- win32_arm64: { name: '@codo-tech/slack-mcp-server-windows-arm64', suffix: '.exe' },
8
+ darwin_x64: { pkg: '@codo-tech/slack-mcp-server-darwin-amd64', bin: 'slack-mcp-server-darwin-amd64', suffix: '' },
9
+ darwin_arm64: { pkg: '@codo-tech/slack-mcp-server-darwin-arm64', bin: 'slack-mcp-server-darwin-arm64', suffix: '' },
10
+ linux_x64: { pkg: '@codo-tech/slack-mcp-server-linux-amd64', bin: 'slack-mcp-server-linux-amd64', suffix: '' },
11
+ linux_arm64: { pkg: '@codo-tech/slack-mcp-server-linux-arm64', bin: 'slack-mcp-server-linux-arm64', suffix: '' },
12
+ win32_x64: { pkg: '@codo-tech/slack-mcp-server-windows-amd64', bin: 'slack-mcp-server-windows-amd64', suffix: '.exe' },
13
+ win32_arm64: { pkg: '@codo-tech/slack-mcp-server-windows-arm64', bin: 'slack-mcp-server-windows-arm64', suffix: '.exe' },
14
14
  };
15
15
 
16
16
  function resolveBinaryPath() {
@@ -37,9 +37,9 @@ function resolveBinaryPath() {
37
37
  }
38
38
 
39
39
  if (process.env.SLACK_MCP_DXT) {
40
- return require.resolve(path.join(__dirname, `${binary.name}${binary.suffix}`));
40
+ return require.resolve(path.join(__dirname, `${binary.bin}${binary.suffix}`));
41
41
  } else {
42
- return require.resolve(`${binary.name}/bin/${binary.name}${binary.suffix}`);
42
+ return require.resolve(`${binary.pkg}/bin/${binary.bin}${binary.suffix}`);
43
43
  }
44
44
  }
45
45
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codo-tech/slack-mcp-server",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
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": {
@@ -16,7 +16,7 @@
16
16
  },
17
17
  "repository": {
18
18
  "type": "git",
19
- "url": "git+https://github.com/korotovsky/slack-mcp-server.git"
19
+ "url": "git+https://github.com/codotech/slack-mcp-server.git"
20
20
  },
21
21
  "keywords": [
22
22
  "mcp",
@@ -33,7 +33,7 @@
33
33
  },
34
34
  "license": "MIT",
35
35
  "bugs": {
36
- "url": "https://github.com/korotovsky/slack-mcp-server/issues"
36
+ "url": "https://github.com/codotech/slack-mcp-server/issues"
37
37
  },
38
- "homepage": "https://github.com/korotovsky/slack-mcp-server#readme"
38
+ "homepage": "https://github.com/codotech/slack-mcp-server#readme"
39
39
  }