@chinchillaenterprises/mcp-slack 3.1.1 → 4.0.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.
package/package.json CHANGED
@@ -1,26 +1,26 @@
1
1
  {
2
2
  "name": "@chinchillaenterprises/mcp-slack",
3
- "version": "3.1.1",
3
+ "version": "4.0.1",
4
4
  "main": "dist/index.js",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "build": "tsc",
8
8
  "dev": "tsc --watch",
9
9
  "prepare": "npm run build",
10
- "test": "jest",
11
- "test:coverage": "jest --coverage",
12
- "test:watch": "jest --watch"
10
+ "test": "NODE_OPTIONS=--experimental-vm-modules jest --coverage",
11
+ "test:fast": "NODE_OPTIONS=--experimental-vm-modules jest",
12
+ "test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage",
13
+ "test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
13
14
  },
14
15
  "keywords": [
15
16
  "mcp",
16
17
  "slack",
17
18
  "messaging",
18
- "modelcontextprotocol",
19
- "multi-account"
19
+ "modelcontextprotocol"
20
20
  ],
21
21
  "author": "Chinchilla Enterprises",
22
22
  "license": "MIT",
23
- "description": "Multi-account MCP server for Slack with persistent credential storage and runtime workspace switching",
23
+ "description": "MCP server for Slack. Single account loaded from env (SLACK_BOT_TOKEN); multi-workspace via separate server entries.",
24
24
  "repository": {
25
25
  "type": "git",
26
26
  "url": "git+https://github.com/ChinchillaEnterprises/ChillMCP.git"
@@ -42,7 +42,6 @@
42
42
  "@modelcontextprotocol/sdk": "^1.12.3",
43
43
  "@slack/web-api": "^7.9.2",
44
44
  "fuse.js": "^7.1.0",
45
- "keytar": "^7.9.0",
46
45
  "puppeteer": "^24.40.0",
47
46
  "zod": "^3.25.64"
48
47
  },