@jtalk22/slack-mcp 1.2.3 → 1.2.4

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/README.md CHANGED
@@ -32,7 +32,6 @@
32
32
  <a href="https://github.com/jtalk22/slack-mcp-server/actions/workflows/ci.yml"><img src="https://img.shields.io/github/actions/workflow/status/jtalk22/slack-mcp-server/ci.yml?label=build" alt="Build Status"></a>
33
33
  <a href="https://smithery.ai/server/jtalk22/slack-mcp-server"><img src="https://img.shields.io/badge/Smithery-Registry-4A154B" alt="Smithery"></a>
34
34
  <a href="https://opensource.org/licenses/MIT"><img src="https://img.shields.io/badge/License-MIT-yellow.svg" alt="License: MIT"></a>
35
- <a href="https://github.com/sponsors/jtalk22"><img src="https://img.shields.io/badge/Sponsor-♡-ea4aaa?logo=github" alt="Sponsor"></a>
36
35
  </p>
37
36
 
38
37
  ---
@@ -45,7 +44,7 @@ I built this because I was working with someone to help me manage a complex work
45
44
 
46
45
  Screenshotting messages is not a workflow.
47
46
 
48
- This server bridges the gap. It creates a secure, local bridge between Claude and your Slack web session. It gives your AI the same access **you** already have in the browser—search history, summarize threads, find that thing someone sent you three weeks ago—without fighting the platform.
47
+ This server bridges the gap. It creates a secure, local bridge between Claude and your Slack web session. It gives your MCP client the same access **you** already have in the browser—search history, summarize threads, and retrieve prior context—without fighting the platform.
49
48
 
50
49
  ![Slack MCP Server Web UI](docs/images/demo-main.png)
51
50
 
@@ -102,7 +101,7 @@ Instead of authenticating as a bot, this server leverages your existing Chrome s
102
101
 
103
102
  **Runtime:** Node.js 20+
104
103
 
105
- ### 30-Second Proof
104
+ ### 30-Second Compatibility Check
106
105
 
107
106
  ```bash
108
107
  npx -y @jtalk22/slack-mcp --version
@@ -119,7 +118,17 @@ Expected:
119
118
  - `3` connectivity/runtime issue
120
119
  - `--setup` launches the interactive wizard
121
120
 
122
- Proof script for launch threads: [docs/HN-LAUNCH.md](docs/HN-LAUNCH.md)
121
+ Command reference: [docs/HN-LAUNCH.md](docs/HN-LAUNCH.md)
122
+
123
+ ### Known Working Clients
124
+
125
+ - Claude Desktop (macOS/Windows/Linux)
126
+ - Claude Code CLI
127
+ - Local browser mode (`web`)
128
+ - Hosted Node runtime (`http`)
129
+ - Cloudflare Worker / Smithery transport
130
+
131
+ Compatibility matrix: [docs/COMPATIBILITY.md](docs/COMPATIBILITY.md)
123
132
 
124
133
  ### Option A: npm (Recommended)
125
134
 
@@ -154,6 +163,7 @@ npx -y @jtalk22/slack-mcp --status
154
163
  Expected:
155
164
  - `--version` and `--help` exit `0`
156
165
  - `--status` exits non-zero until credentials are configured
166
+ - `--status` is read-only and never attempts Chrome extraction
157
167
 
158
168
  ---
159
169
 
@@ -325,7 +335,7 @@ npm run web
325
335
 
326
336
  ```
327
337
  ════════════════════════════════════════════════════════════
328
- Slack Web API Server v1.2.3
338
+ Slack Web API Server v1.2.4
329
339
  ════════════════════════════════════════════════════════════
330
340
 
331
341
  Dashboard: http://localhost:3000/?key=smcp_xxxxxxxxxxxx
@@ -350,6 +360,7 @@ Just click the link - no copy-paste needed. The key is saved to your browser and
350
360
  - [Deployment Modes](docs/DEPLOYMENT-MODES.md) - Choose the right operating model (`stdio`, `web`, hosted HTTP, Smithery/Worker)
351
361
  - [Use Case Recipes](docs/USE_CASE_RECIPES.md) - 12 copy/paste prompts mapped to current tool contracts
352
362
  - [Support Boundaries](docs/SUPPORT-BOUNDARIES.md) - Scope, response targets, and solo-maintainer capacity limits
363
+ - [Release Health](docs/RELEASE-HEALTH.md) - Track setup reliability and support-load targets through this release cycle
353
364
 
354
365
  If you're evaluating team rollout, start with [Deployment Modes](docs/DEPLOYMENT-MODES.md) before exposing remote endpoints.
355
366
 
@@ -401,6 +412,7 @@ This caches DM channel IDs for 24 hours.
401
412
  - Chrome must be **running** (not minimized to Dock)
402
413
  - Slack tab must be open at `app.slack.com`
403
414
  - You must be logged in
415
+ - In Chrome menu, enable `View > Developer > Allow JavaScript from Apple Events`
404
416
 
405
417
  ### Claude Desktop Not Seeing Tools
406
418
  1. Verify JSON syntax in config file
@@ -456,7 +468,7 @@ slack-mcp-server/
456
468
 
457
469
  PRs welcome. Run `node --check` on modified files before submitting.
458
470
 
459
- If you find this project useful, consider [sponsoring](https://github.com/sponsors/jtalk22) or starring the repo.
471
+ If you find this project useful, consider starring the repo.
460
472
 
461
473
  ---
462
474
 
package/docs/API.md CHANGED
@@ -11,7 +11,9 @@ Check if Slack tokens are valid.
11
11
  **Returns:**
12
12
  ```json
13
13
  {
14
- "status": "OK",
14
+ "status": "ok",
15
+ "code": "ok",
16
+ "message": "Slack auth valid",
15
17
  "user": "james",
16
18
  "team": "Rêvasser",
17
19
  "token_source": "environment",
@@ -30,12 +32,15 @@ Get detailed token health, age, and cache statistics.
30
32
  **Returns:**
31
33
  ```json
32
34
  {
35
+ "status": "healthy",
36
+ "code": "ok",
37
+ "message": "Token is healthy",
38
+ "next_action": null,
33
39
  "token": {
34
40
  "status": "healthy",
35
41
  "age_hours": 2.5,
36
42
  "source": "file",
37
- "updated_at": "2026-01-08T12:00:00Z",
38
- "message": "Token is healthy"
43
+ "updated_at": "2026-01-08T12:00:00Z"
39
44
  },
40
45
  "auto_refresh": {
41
46
  "enabled": true,
@@ -62,7 +67,9 @@ Force refresh tokens from Chrome.
62
67
  **Returns:**
63
68
  ```json
64
69
  {
65
- "status": "SUCCESS",
70
+ "status": "ok",
71
+ "code": "refreshed",
72
+ "message": "Tokens refreshed from Chrome.",
66
73
  "user": "james",
67
74
  "team": "Rêvasser"
68
75
  }
@@ -9,6 +9,7 @@ Use this guide for release notes, issue replies, and changelog entries.
9
9
  3. Do not include co-author trailers from tooling.
10
10
  4. State exact versions and commands when relevant.
11
11
  5. Avoid speculative claims.
12
+ 6. Release titles use `vX.Y.Z — <concrete operational outcome>`.
12
13
 
13
14
  ## Issue Reply Template
14
15
 
@@ -0,0 +1,19 @@
1
+ # Compatibility Matrix
2
+
3
+ Use this matrix to choose a known working client/runtime path before rollout.
4
+
5
+ | Client | Mode | Token path | Status | Quick verify command |
6
+ |---|---|---|---|---|
7
+ | Claude Desktop (macOS) | `stdio` | `~/.slack-mcp-tokens.json` via `--setup` auto-extract | Supported | `npx -y @jtalk22/slack-mcp --setup && npx -y @jtalk22/slack-mcp --status` |
8
+ | Claude Desktop (Windows) | `stdio` | `env` (`SLACK_TOKEN`, `SLACK_COOKIE`) in config | Supported | `npx -y @jtalk22/slack-mcp --status` |
9
+ | Claude Desktop (Linux) | `stdio` | `env` or token file via guided setup | Supported | `npx -y @jtalk22/slack-mcp --status` |
10
+ | Claude Code CLI | `stdio` | `~/.slack-mcp-tokens.json` or `env` | Supported | `npx -y @jtalk22/slack-mcp --version && npx -y @jtalk22/slack-mcp --status` |
11
+ | Local Browser UI | `web` | token file or `env` | Supported | `npx -y @jtalk22/slack-mcp web` |
12
+ | Hosted Node Runtime | `http` | `env` in host runtime | Supported with operator controls | `node src/server-http.js` then `curl -s http://localhost:8080/health` |
13
+ | Cloudflare Worker / Smithery transport | `worker` | runtime env/query handoff per deployment config | Supported with deployment validation | `wrangler deploy --config workers/wrangler.toml` and verify `/health` |
14
+
15
+ ## Notes
16
+
17
+ 1. Runtime baseline is Node 20+.
18
+ 2. `--doctor` is the fastest first check when setup status is unknown.
19
+ 3. For hosted/team deployment, use [DEPLOYMENT-MODES.md](DEPLOYMENT-MODES.md) before production rollout.
package/docs/HN-LAUNCH.md CHANGED
@@ -1,23 +1,25 @@
1
1
  # HN Launch Kit
2
2
 
3
- Use this file as copy/paste launch material with no extra edits.
3
+ Use this file as copy/paste launch material with minimal edits.
4
4
 
5
- ## Launch Post Draft
5
+ ## Title Options
6
6
 
7
- Title idea: `Show HN: Slack MCP Server (local-first, session-based Slack access for Claude)`
7
+ - `Show HN: Slack MCP Server (session-based Slack access for Claude)`
8
+ - `Show HN: Slack MCP Server (local-first Slack context for Claude)`
9
+ - `Show HN: Slack MCP Server (Slack MCP for local and hosted runtimes)`
8
10
 
9
- Post body:
11
+ ## Launch Post Template
10
12
 
11
13
  ```md
12
- Built a local-first Slack MCP server so Claude can use the same Slack access already available in your browser session.
14
+ Built a session-based Slack MCP server so Claude can use the same access already available in your Slack web session.
13
15
 
14
- What it does:
15
- - DMs/channels/thread reads
16
+ Current scope:
17
+ - DM/channel/thread reads
16
18
  - workspace search
17
- - message send + user lookups
19
+ - message sends and user lookups
18
20
  - local web mode when MCP is unavailable
19
21
 
20
- Quick proof:
22
+ Verify:
21
23
  - `npx -y @jtalk22/slack-mcp --version`
22
24
  - `npx -y @jtalk22/slack-mcp --status`
23
25
  - `npx -y @jtalk22/slack-mcp --setup`
@@ -31,28 +33,28 @@ npm: https://www.npmjs.com/package/@jtalk22/slack-mcp
31
33
  ```md
32
34
  Notes up front:
33
35
  - Local-first usage is fully supported.
34
- - Tokens are your Slack session credentials and are stored locally by default.
36
+ - Tokens are Slack session credentials and are stored locally by default.
35
37
  - macOS supports automatic Chrome extraction; Linux/Windows use guided manual setup.
36
38
  - Current docs include deployment modes, support boundaries, and troubleshooting.
37
39
 
38
40
  If install fails, include OS, Node version, runtime mode (`stdio|web|http|worker`), and exact error output.
39
41
  ```
40
42
 
41
- ## Rebuttal Mini-FAQ
43
+ ## FAQ
42
44
 
43
- ### Is this bypassing Slack app scopes?
44
- It does not use Slack app OAuth scopes. It uses your existing signed-in session permissions.
45
+ ### Is this using Slack app OAuth scopes?
46
+ No. It uses existing signed-in session permissions.
45
47
 
46
48
  ### What about token expiry?
47
49
  Session tokens expire. `--setup` refreshes credentials, and macOS supports automatic extraction from Chrome.
48
50
 
49
- ### Is this intended as a stealth hosted proxy?
50
- No. The free path is local/self-hosted first. Deployment docs describe tradeoffs and support boundaries before team rollout.
51
+ ### Is hosted deployment required?
52
+ No. The default path is local/self-hosted first. Deployment docs describe hosted tradeoffs.
51
53
 
52
- ### Is this safe for production teams?
53
- Treat as operator-managed infrastructure. Validate with your own risk/compliance controls before broader rollout.
54
+ ### Is this suitable for production teams?
55
+ Treat as operator-managed infrastructure and validate against your own security and compliance requirements.
54
56
 
55
- ## Install Proof Block
57
+ ## Install Check Block
56
58
 
57
59
  ```bash
58
60
  npx -y @jtalk22/slack-mcp --version
package/docs/INDEX.md CHANGED
@@ -1,10 +1,11 @@
1
1
  # Documentation Index
2
2
 
3
- Start here for setup, validation, operations, and support.
3
+ Start here for setup, compatibility checks, operations, and support.
4
4
 
5
5
  ## Core
6
6
 
7
7
  - [Setup Guide](SETUP.md)
8
+ - [Compatibility Matrix](COMPATIBILITY.md)
8
9
  - [API Reference](API.md)
9
10
  - [Web API Reference](WEB-API.md)
10
11
  - [Troubleshooting](TROUBLESHOOTING.md)
@@ -19,6 +20,8 @@ Start here for setup, validation, operations, and support.
19
20
 
20
21
  - [HN Launch Kit](HN-LAUNCH.md)
21
22
  - [Communication Style](COMMUNICATION-STYLE.md)
23
+ - [Release Health Guide](RELEASE-HEALTH.md)
24
+ - [Latest Release Health Snapshot](release-health/latest.md)
22
25
  - [Changelog](../CHANGELOG.md)
23
26
 
24
27
  ## Issue Intake
@@ -0,0 +1,66 @@
1
+ # Release Health Tracking
2
+
3
+ Use this to track installation reliability and operational load during the current release cycle.
4
+
5
+ ## One-command snapshot
6
+
7
+ ```bash
8
+ node scripts/collect-release-health.js
9
+ ```
10
+
11
+ Outputs:
12
+ - `docs/release-health/latest.md`
13
+ - `docs/release-health/YYYY-MM-DD.md`
14
+ - `docs/release-health/automation-delta.md` (when delta script is run)
15
+
16
+ 24-hour loop artifacts:
17
+ - `docs/release-health/24h-start.md`
18
+ - `docs/release-health/24h-end.md`
19
+ - `docs/release-health/24h-delta.md`
20
+
21
+ ## What it captures automatically
22
+
23
+ - npm downloads (last week, last month)
24
+ - npm latest version
25
+ - GitHub stars, forks, open issues
26
+ - GitHub 14-day traffic views/clones (owner token required via `gh auth`)
27
+ - Count of `deployment-intake` issues
28
+
29
+ ## 14-day targets
30
+
31
+ - weekly downloads: `>= 180`
32
+ - qualified deployment-intake submissions: `>= 2`
33
+ - support load: `<= 2 hours/week`
34
+
35
+ ## Manual fields to track alongside snapshots
36
+
37
+ - Weekly support minutes spent.
38
+ - Deployment-intake quality (clear use case, owner, timeline).
39
+ - Traffic source notes (search, referrals, docs traffic).
40
+ - External \"first run succeeded\" confirmations (issues/discussions).
41
+
42
+ ## Recommended cadence
43
+
44
+ - Days 1-7: daily snapshot
45
+ - Days 8-14: every 2-3 days
46
+
47
+ ## Automated cadence (low-touch)
48
+
49
+ - Workflow: `.github/workflows/release-health.yml`
50
+ - Triggers:
51
+ - scheduled at `07:15` and `19:15` UTC
52
+ - manual `workflow_dispatch`
53
+ - Outputs per run:
54
+ - workflow summary with current snapshot and baseline delta
55
+ - artifacts: `docs/release-health/latest.md`, `docs/release-health/automation-delta.md`
56
+
57
+ ## Local delta command
58
+
59
+ If you want to compare two explicit snapshots locally:
60
+
61
+ ```bash
62
+ node scripts/build-release-health-delta.js \
63
+ --before docs/release-health/24h-start.md \
64
+ --after docs/release-health/24h-end.md \
65
+ --out docs/release-health/24h-delta.md
66
+ ```
package/docs/SETUP.md CHANGED
@@ -40,6 +40,7 @@ Expected:
40
40
  - `1` missing credentials
41
41
  - `2` invalid/expired credentials
42
42
  - `3` connectivity/runtime issue
43
+ - `--status` is read-only and never performs Chrome extraction.
43
44
 
44
45
  ### 3. Get Slack Tokens
45
46
 
@@ -156,3 +157,4 @@ Make sure:
156
157
  - Chrome is running (not just in dock)
157
158
  - You have a Slack tab open (not the desktop app)
158
159
  - You're logged into Slack in that tab
160
+ - In Chrome menu, enable `View > Developer > Allow JavaScript from Apple Events`
@@ -23,6 +23,7 @@ Expected:
23
23
  - `1` missing credentials
24
24
  - `2` invalid/expired credentials
25
25
  - `3` connectivity/runtime issue
26
+ - `--status` is read-only and never attempts Chrome extraction.
26
27
 
27
28
  If `--version` fails here, the issue is install/runtime path, not Slack credentials.
28
29
 
@@ -81,13 +82,13 @@ slack_refresh_tokens
81
82
  # Option 2: Package setup wizard
82
83
  npx -y @jtalk22/slack-mcp --setup
83
84
 
84
- # Option 3: Doctor diagnostics
85
+ # Option 3: Diagnostics check
85
86
  npx -y @jtalk22/slack-mcp --doctor
86
87
 
87
- # Option 3: Repo CLI
88
+ # Option 4: Repo CLI
88
89
  npm run tokens:auto
89
90
 
90
- # Option 4: Manual
91
+ # Option 5: Manual
91
92
  npm run tokens:refresh
92
93
  ```
93
94
 
@@ -212,7 +213,8 @@ tail -50 ~/Library/Logs/Claude/mcp-server-slack.log
212
213
  1. Google Chrome must be running (not just in Dock)
213
214
  2. Have a Slack tab open at `app.slack.com` (not desktop app)
214
215
  3. Be logged into Slack in that tab
215
- 4. Grant accessibility permissions to Terminal/Claude
216
+ 4. In Chrome menu, enable `View > Developer > Allow JavaScript from Apple Events`
217
+ 5. Grant accessibility permissions to Terminal/Claude
216
218
 
217
219
  **Check permissions:**
218
220
  System Preferences → Privacy & Security → Accessibility → Ensure Terminal is enabled
package/docs/WEB-API.md CHANGED
@@ -99,7 +99,9 @@ curl -H "Authorization: Bearer $API_KEY" http://localhost:3000/health
99
99
  **Response:**
100
100
  ```json
101
101
  {
102
- "status": "OK",
102
+ "status": "ok",
103
+ "code": "ok",
104
+ "message": "Slack auth valid",
103
105
  "user": "james",
104
106
  "team": "Rêvasser"
105
107
  }
@@ -107,6 +109,15 @@ curl -H "Authorization: Bearer $API_KEY" http://localhost:3000/health
107
109
 
108
110
  ---
109
111
 
112
+ ### GET /token-status
113
+ Read-only token diagnostics (age/health/cache stats). This endpoint does not trigger Chrome extraction.
114
+
115
+ ```bash
116
+ curl -H "Authorization: Bearer $API_KEY" http://localhost:3000/token-status
117
+ ```
118
+
119
+ ---
120
+
110
121
  ### POST /refresh
111
122
  Force token refresh from Chrome.
112
123
 
@@ -0,0 +1,33 @@
1
+ # Release Health Snapshot
2
+
3
+ - Generated: 2026-02-25T06:14:12.948Z
4
+ - Repo: `jtalk22/slack-mcp-server`
5
+ - Package: `@jtalk22/slack-mcp`
6
+
7
+ ## Install Signals
8
+
9
+ - npm downloads (last week): 139
10
+ - npm downloads (last month): 632
11
+ - npm latest version: 1.2.3
12
+
13
+ ## GitHub Reach
14
+
15
+ - stars: 13
16
+ - forks: 8
17
+ - open issues: 0
18
+ - 14d views: 497
19
+ - 14d unique visitors: 259
20
+ - 14d clones: 118
21
+ - 14d unique cloners: 67
22
+ - deployment-intake submissions (all-time): 1
23
+
24
+ ## 14-Day Reliability Targets (v1.2.3 Cycle)
25
+
26
+ - weekly downloads: >= 180
27
+ - qualified deployment-intake submissions: >= 2
28
+ - maintainer support load: <= 2 hours/week
29
+
30
+ ## Notes
31
+
32
+ - Update this snapshot daily during the first week, then every 2-3 days.
33
+ - Track deployment-intake quality and support load manually in issue notes.
@@ -0,0 +1,33 @@
1
+ # Release Health Snapshot
2
+
3
+ - Generated: 2026-02-26T09:32:53.328Z
4
+ - Repo: `jtalk22/slack-mcp-server`
5
+ - Package: `@jtalk22/slack-mcp`
6
+
7
+ ## Install Signals
8
+
9
+ - npm downloads (last week): 532
10
+ - npm downloads (last month): 1011
11
+ - npm latest version: 1.2.3
12
+
13
+ ## GitHub Reach
14
+
15
+ - stars: 13
16
+ - forks: 8
17
+ - open issues: 0
18
+ - 14d views: 498
19
+ - 14d unique visitors: 263
20
+ - 14d clones: 338
21
+ - 14d unique cloners: 113
22
+ - deployment-intake submissions (all-time): 1
23
+
24
+ ## 14-Day Reliability Targets (v1.2.3 Cycle)
25
+
26
+ - weekly downloads: >= 180
27
+ - qualified deployment-intake submissions: >= 2
28
+ - maintainer support load: <= 2 hours/week
29
+
30
+ ## Notes
31
+
32
+ - Update this snapshot daily during active release windows, then weekly.
33
+ - Track deployment-intake quality and support load manually in issue notes.
@@ -0,0 +1,21 @@
1
+ # 24-Hour Release Health Delta
2
+
3
+ - Window start snapshot: docs/release-health/24h-start.md
4
+ - Window end snapshot: docs/release-health/24h-end.md
5
+
6
+ | Metric | Start | End | Delta |
7
+ |---|---:|---:|---:|
8
+ | npm downloads (last week) | 532 | 532 | 0 |
9
+ | npm downloads (last month) | 1011 | 1011 | 0 |
10
+ | stars | 13 | 13 | 0 |
11
+ | forks | 8 | 8 | 0 |
12
+ | open issues | 0 | 0 | 0 |
13
+ | 14d views | 498 | 498 | 0 |
14
+ | 14d unique visitors | 263 | 263 | 0 |
15
+ | 14d clones | 338 | 338 | 0 |
16
+ | 14d unique cloners | 113 | 113 | 0 |
17
+ | deployment-intake submissions (all-time) | 1 | 1 | 0 |
18
+
19
+ ## Qualitative Signal
20
+
21
+ - External "first run succeeded" confirmations (issues/discussions): track manually in cycle notes.
@@ -0,0 +1,33 @@
1
+ # Release Health Snapshot
2
+
3
+ - Generated: 2026-02-26T09:32:53.328Z
4
+ - Repo: `jtalk22/slack-mcp-server`
5
+ - Package: `@jtalk22/slack-mcp`
6
+
7
+ ## Install Signals
8
+
9
+ - npm downloads (last week): 532
10
+ - npm downloads (last month): 1011
11
+ - npm latest version: 1.2.3
12
+
13
+ ## GitHub Reach
14
+
15
+ - stars: 13
16
+ - forks: 8
17
+ - open issues: 0
18
+ - 14d views: 498
19
+ - 14d unique visitors: 263
20
+ - 14d clones: 338
21
+ - 14d unique cloners: 113
22
+ - deployment-intake submissions (all-time): 1
23
+
24
+ ## 14-Day Reliability Targets (v1.2.3 Cycle)
25
+
26
+ - weekly downloads: >= 180
27
+ - qualified deployment-intake submissions: >= 2
28
+ - maintainer support load: <= 2 hours/week
29
+
30
+ ## Notes
31
+
32
+ - Update this snapshot daily during active release windows, then weekly.
33
+ - Track deployment-intake quality and support load manually in issue notes.
@@ -0,0 +1,33 @@
1
+ # Release Health Snapshot
2
+
3
+ - Generated: 2026-02-26T09:32:04.228Z
4
+ - Repo: `jtalk22/slack-mcp-server`
5
+ - Package: `@jtalk22/slack-mcp`
6
+
7
+ ## Install Signals
8
+
9
+ - npm downloads (last week): 532
10
+ - npm downloads (last month): 1011
11
+ - npm latest version: 1.2.3
12
+
13
+ ## GitHub Reach
14
+
15
+ - stars: 13
16
+ - forks: 8
17
+ - open issues: 0
18
+ - 14d views: 498
19
+ - 14d unique visitors: 263
20
+ - 14d clones: 338
21
+ - 14d unique cloners: 113
22
+ - deployment-intake submissions (all-time): 1
23
+
24
+ ## 14-Day Reliability Targets (v1.2.3 Cycle)
25
+
26
+ - weekly downloads: >= 180
27
+ - qualified deployment-intake submissions: >= 2
28
+ - maintainer support load: <= 2 hours/week
29
+
30
+ ## Notes
31
+
32
+ - Update this snapshot daily during active release windows, then weekly.
33
+ - Track deployment-intake quality and support load manually in issue notes.
@@ -0,0 +1,33 @@
1
+ # Release Health Snapshot
2
+
3
+ - Generated: 2026-02-26T09:32:53.328Z
4
+ - Repo: `jtalk22/slack-mcp-server`
5
+ - Package: `@jtalk22/slack-mcp`
6
+
7
+ ## Install Signals
8
+
9
+ - npm downloads (last week): 532
10
+ - npm downloads (last month): 1011
11
+ - npm latest version: 1.2.3
12
+
13
+ ## GitHub Reach
14
+
15
+ - stars: 13
16
+ - forks: 8
17
+ - open issues: 0
18
+ - 14d views: 498
19
+ - 14d unique visitors: 263
20
+ - 14d clones: 338
21
+ - 14d unique cloners: 113
22
+ - deployment-intake submissions (all-time): 1
23
+
24
+ ## 14-Day Reliability Targets (v1.2.3 Cycle)
25
+
26
+ - weekly downloads: >= 180
27
+ - qualified deployment-intake submissions: >= 2
28
+ - maintainer support load: <= 2 hours/week
29
+
30
+ ## Notes
31
+
32
+ - Update this snapshot daily during active release windows, then weekly.
33
+ - Track deployment-intake quality and support load manually in issue notes.