@jtalk22/slack-mcp 3.0.0 → 3.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/README.md +63 -28
- package/docs/SETUP.md +64 -29
- package/docs/TROUBLESHOOTING.md +28 -0
- package/lib/handlers.js +156 -0
- package/lib/slack-client.js +11 -3
- package/lib/token-store.js +6 -5
- package/lib/tools.js +131 -0
- package/package.json +35 -36
- package/public/index.html +10 -6
- package/public/share.html +128 -0
- package/scripts/setup-wizard.js +1 -1
- package/server.json +10 -4
- package/src/server-http.js +16 -1
- package/src/server.js +31 -7
- package/src/web-server.js +119 -4
- package/docs/CLOUDFLARE-BROWSER-TOOLKIT.md +0 -67
- package/docs/COMMUNICATION-STYLE.md +0 -66
- package/docs/COMPATIBILITY.md +0 -19
- package/docs/DEPLOYMENT-MODES.md +0 -55
- package/docs/HN-LAUNCH.md +0 -72
- package/docs/INDEX.md +0 -40
- package/docs/INSTALL-PROOF.md +0 -18
- package/docs/LAUNCH-COPY-v3.0.0.md +0 -73
- package/docs/LAUNCH-MATRIX.md +0 -22
- package/docs/LAUNCH-OPS.md +0 -71
- package/docs/RELEASE-HEALTH.md +0 -90
- package/docs/SUPPORT-BOUNDARIES.md +0 -49
- package/docs/USE_CASE_RECIPES.md +0 -69
- package/docs/WEB-API.md +0 -303
- package/docs/images/demo-channel-messages.png +0 -0
- package/docs/images/demo-channels.png +0 -0
- package/docs/images/demo-claude-mobile-360x800.png +0 -0
- package/docs/images/demo-claude-mobile-390x844.png +0 -0
- package/docs/images/demo-main-mobile-360x800.png +0 -0
- package/docs/images/demo-main-mobile-390x844.png +0 -0
- package/docs/images/demo-main.png +0 -0
- package/docs/images/demo-messages.png +0 -0
- package/docs/images/demo-poster.png +0 -0
- package/docs/images/demo-sidebar.png +0 -0
- package/docs/images/diagram-oauth-comparison.svg +0 -80
- package/docs/images/diagram-session-flow.svg +0 -105
- package/docs/images/web-api-mobile-360x800.png +0 -0
- package/docs/images/web-api-mobile-390x844.png +0 -0
- package/public/demo-claude.html +0 -1958
- package/public/demo-video.html +0 -235
- package/public/demo.html +0 -1196
- package/scripts/build-release-health-delta.js +0 -201
- package/scripts/capture-screenshots.js +0 -146
- package/scripts/check-owner-attribution.sh +0 -80
- package/scripts/check-public-language.sh +0 -25
- package/scripts/check-version-parity.js +0 -176
- package/scripts/cloudflare-browser-tool.js +0 -237
- package/scripts/collect-release-health.js +0 -150
- package/scripts/record-demo.js +0 -162
- package/scripts/release-preflight.js +0 -243
- package/scripts/setup-git-hooks.sh +0 -15
- package/scripts/verify-core.js +0 -159
- package/scripts/verify-install-flow.js +0 -193
- package/scripts/verify-web.js +0 -269
|
@@ -1,105 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900 400">
|
|
2
|
-
<defs>
|
|
3
|
-
<linearGradient id="bgGrad" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
4
|
-
<stop offset="0%" style="stop-color:#1a1a2e"/>
|
|
5
|
-
<stop offset="100%" style="stop-color:#16213e"/>
|
|
6
|
-
</linearGradient>
|
|
7
|
-
<filter id="glow">
|
|
8
|
-
<feGaussianBlur stdDeviation="2" result="coloredBlur"/>
|
|
9
|
-
<feMerge>
|
|
10
|
-
<feMergeNode in="coloredBlur"/>
|
|
11
|
-
<feMergeNode in="SourceGraphic"/>
|
|
12
|
-
</feMerge>
|
|
13
|
-
</filter>
|
|
14
|
-
</defs>
|
|
15
|
-
|
|
16
|
-
<!-- Background -->
|
|
17
|
-
<rect width="900" height="400" fill="url(#bgGrad)" rx="12"/>
|
|
18
|
-
|
|
19
|
-
<!-- Title -->
|
|
20
|
-
<text x="450" y="35" text-anchor="middle" fill="#ffffff" font-family="system-ui, -apple-system, sans-serif" font-size="18" font-weight="600">Session Mirroring Flow</text>
|
|
21
|
-
|
|
22
|
-
<!-- Participants -->
|
|
23
|
-
<!-- Chrome -->
|
|
24
|
-
<rect x="50" y="60" width="120" height="40" rx="8" fill="#3b82f6" opacity="0.9"/>
|
|
25
|
-
<text x="110" y="85" text-anchor="middle" fill="#ffffff" font-family="system-ui, -apple-system, sans-serif" font-size="13" font-weight="500">Chrome</text>
|
|
26
|
-
<line x1="110" y1="100" x2="110" y2="360" stroke="#3b82f6" stroke-width="2" stroke-dasharray="4"/>
|
|
27
|
-
|
|
28
|
-
<!-- AppleScript -->
|
|
29
|
-
<rect x="220" y="60" width="120" height="40" rx="8" fill="#8b5cf6" opacity="0.9"/>
|
|
30
|
-
<text x="280" y="85" text-anchor="middle" fill="#ffffff" font-family="system-ui, -apple-system, sans-serif" font-size="13" font-weight="500">AppleScript</text>
|
|
31
|
-
<line x1="280" y1="100" x2="280" y2="360" stroke="#8b5cf6" stroke-width="2" stroke-dasharray="4"/>
|
|
32
|
-
|
|
33
|
-
<!-- Token Store -->
|
|
34
|
-
<rect x="390" y="60" width="120" height="40" rx="8" fill="#4ecdc4" opacity="0.9"/>
|
|
35
|
-
<text x="450" y="85" text-anchor="middle" fill="#1a1a2e" font-family="system-ui, -apple-system, sans-serif" font-size="13" font-weight="500">Token Store</text>
|
|
36
|
-
<line x1="450" y1="100" x2="450" y2="360" stroke="#4ecdc4" stroke-width="2" stroke-dasharray="4"/>
|
|
37
|
-
|
|
38
|
-
<!-- MCP Server -->
|
|
39
|
-
<rect x="560" y="60" width="120" height="40" rx="8" fill="#da7756" opacity="0.9"/>
|
|
40
|
-
<text x="620" y="85" text-anchor="middle" fill="#ffffff" font-family="system-ui, -apple-system, sans-serif" font-size="13" font-weight="500">MCP Server</text>
|
|
41
|
-
<line x1="620" y1="100" x2="620" y2="360" stroke="#da7756" stroke-width="2" stroke-dasharray="4"/>
|
|
42
|
-
|
|
43
|
-
<!-- Slack API -->
|
|
44
|
-
<rect x="730" y="60" width="120" height="40" rx="8" fill="#e94560" opacity="0.9"/>
|
|
45
|
-
<text x="790" y="85" text-anchor="middle" fill="#ffffff" font-family="system-ui, -apple-system, sans-serif" font-size="13" font-weight="500">Slack API</text>
|
|
46
|
-
<line x1="790" y1="100" x2="790" y2="360" stroke="#e94560" stroke-width="2" stroke-dasharray="4"/>
|
|
47
|
-
|
|
48
|
-
<!-- Note: Logged into Slack -->
|
|
49
|
-
<rect x="60" y="115" width="100" height="30" rx="4" fill="#3b82f6" opacity="0.2" stroke="#3b82f6" stroke-width="1"/>
|
|
50
|
-
<text x="110" y="135" text-anchor="middle" fill="#93c5fd" font-family="system-ui, -apple-system, sans-serif" font-size="10">Logged into Slack</text>
|
|
51
|
-
|
|
52
|
-
<!-- Arrow 1: Script → Chrome -->
|
|
53
|
-
<line x1="280" y1="160" x2="130" y2="160" stroke="#8b5cf6" stroke-width="2" marker-end="url(#arrowPurple)"/>
|
|
54
|
-
<text x="205" y="153" text-anchor="middle" fill="#c4b5fd" font-family="system-ui, -apple-system, sans-serif" font-size="10">Execute JS in tab</text>
|
|
55
|
-
|
|
56
|
-
<!-- Arrow 2: Chrome → Script (dashed return) -->
|
|
57
|
-
<line x1="130" y1="185" x2="260" y2="185" stroke="#3b82f6" stroke-width="2" stroke-dasharray="5" marker-end="url(#arrowBlue)"/>
|
|
58
|
-
<text x="195" y="200" text-anchor="middle" fill="#93c5fd" font-family="system-ui, -apple-system, sans-serif" font-size="10">xoxc- + xoxd- tokens</text>
|
|
59
|
-
|
|
60
|
-
<!-- Arrow 3: Script → Store -->
|
|
61
|
-
<line x1="300" y1="225" x2="430" y2="225" stroke="#8b5cf6" stroke-width="2" marker-end="url(#arrowPurple)"/>
|
|
62
|
-
<text x="365" y="218" text-anchor="middle" fill="#c4b5fd" font-family="system-ui, -apple-system, sans-serif" font-size="10">Save tokens</text>
|
|
63
|
-
|
|
64
|
-
<!-- Store self-arrow (Keychain) -->
|
|
65
|
-
<path d="M 470 245 Q 500 245 500 260 Q 500 275 470 275" fill="none" stroke="#4ecdc4" stroke-width="2"/>
|
|
66
|
-
<text x="515" y="265" fill="#5eead4" font-family="system-ui, -apple-system, sans-serif" font-size="10">Keychain encrypt</text>
|
|
67
|
-
|
|
68
|
-
<!-- Divider -->
|
|
69
|
-
<line x1="50" y1="300" x2="850" y2="300" stroke="#ffffff" stroke-width="1" opacity="0.2"/>
|
|
70
|
-
<text x="60" y="295" fill="#ffffff" opacity="0.5" font-family="system-ui, -apple-system, sans-serif" font-size="10">Claude requests data</text>
|
|
71
|
-
|
|
72
|
-
<!-- Arrow 4: MCP → Store -->
|
|
73
|
-
<line x1="600" y1="320" x2="470" y2="320" stroke="#da7756" stroke-width="2" marker-end="url(#arrowOrange)"/>
|
|
74
|
-
<text x="535" y="313" text-anchor="middle" fill="#fbbf8c" font-family="system-ui, -apple-system, sans-serif" font-size="10">Load creds</text>
|
|
75
|
-
|
|
76
|
-
<!-- Arrow 5: Store → MCP (return) -->
|
|
77
|
-
<line x1="470" y1="340" x2="600" y2="340" stroke="#4ecdc4" stroke-width="2" stroke-dasharray="5" marker-end="url(#arrowTeal)"/>
|
|
78
|
-
|
|
79
|
-
<!-- Arrow 6: MCP → Slack -->
|
|
80
|
-
<line x1="640" y1="355" x2="770" y2="355" stroke="#da7756" stroke-width="2" marker-end="url(#arrowOrange)"/>
|
|
81
|
-
<text x="705" y="348" text-anchor="middle" fill="#fbbf8c" font-family="system-ui, -apple-system, sans-serif" font-size="10">GET messages</text>
|
|
82
|
-
|
|
83
|
-
<!-- Arrow 7: Slack → MCP (return) -->
|
|
84
|
-
<line x1="770" y1="375" x2="640" y2="375" stroke="#e94560" stroke-width="2" stroke-dasharray="5" marker-end="url(#arrowRed)"/>
|
|
85
|
-
<text x="705" y="390" text-anchor="middle" fill="#fca5a5" font-family="system-ui, -apple-system, sans-serif" font-size="10">Full history</text>
|
|
86
|
-
|
|
87
|
-
<!-- Arrow markers -->
|
|
88
|
-
<defs>
|
|
89
|
-
<marker id="arrowPurple" markerWidth="10" markerHeight="10" refX="9" refY="3" orient="auto">
|
|
90
|
-
<path d="M0,0 L0,6 L9,3 z" fill="#8b5cf6"/>
|
|
91
|
-
</marker>
|
|
92
|
-
<marker id="arrowBlue" markerWidth="10" markerHeight="10" refX="9" refY="3" orient="auto">
|
|
93
|
-
<path d="M0,0 L0,6 L9,3 z" fill="#3b82f6"/>
|
|
94
|
-
</marker>
|
|
95
|
-
<marker id="arrowTeal" markerWidth="10" markerHeight="10" refX="9" refY="3" orient="auto">
|
|
96
|
-
<path d="M0,0 L0,6 L9,3 z" fill="#4ecdc4"/>
|
|
97
|
-
</marker>
|
|
98
|
-
<marker id="arrowOrange" markerWidth="10" markerHeight="10" refX="9" refY="3" orient="auto">
|
|
99
|
-
<path d="M0,0 L0,6 L9,3 z" fill="#da7756"/>
|
|
100
|
-
</marker>
|
|
101
|
-
<marker id="arrowRed" markerWidth="10" markerHeight="10" refX="9" refY="3" orient="auto">
|
|
102
|
-
<path d="M0,0 L0,6 L9,3 z" fill="#e94560"/>
|
|
103
|
-
</marker>
|
|
104
|
-
</defs>
|
|
105
|
-
</svg>
|
|
Binary file
|
|
Binary file
|