@jtalk22/slack-mcp 1.0.6 → 1.1.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 +13 -1
- package/package.json +1 -1
- package/public/demo.html +715 -611
- package/public/index.html +128 -16
- package/scripts/verify-web.js +221 -0
- package/src/server.js +2 -2
- package/src/web-server.js +9 -6
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# Slack MCP Server
|
|
2
2
|
|
|
3
|
+
[](https://jtalk22.github.io/slack-mcp-server/public/demo.html)
|
|
4
|
+
|
|
3
5
|
[](https://www.npmjs.com/package/@jtalk22/slack-mcp)
|
|
4
6
|
[](https://github.com/jtalk22/slack-mcp-server/pkgs/container/slack-mcp-server)
|
|
5
7
|
[](https://opensource.org/licenses/MIT)
|
|
@@ -284,7 +286,17 @@ npm run web
|
|
|
284
286
|
# Or: npx @jtalk22/slack-mcp web
|
|
285
287
|
```
|
|
286
288
|
|
|
287
|
-
|
|
289
|
+
**Magic Link (v1.1.0+):** The console prints a one-click URL with the API key embedded:
|
|
290
|
+
|
|
291
|
+
```
|
|
292
|
+
════════════════════════════════════════════════════════════
|
|
293
|
+
Slack Web API Server v1.1.0
|
|
294
|
+
════════════════════════════════════════════════════════════
|
|
295
|
+
|
|
296
|
+
Dashboard: http://localhost:3000/?key=smcp_xxxxxxxxxxxx
|
|
297
|
+
```
|
|
298
|
+
|
|
299
|
+
Just click the link - no copy-paste needed. The key is saved to your browser and stripped from the URL for security.
|
|
288
300
|
|
|
289
301
|
<details>
|
|
290
302
|
<summary><strong>Screenshots</strong></summary>
|
package/package.json
CHANGED