@jtalk22/slack-mcp 4.1.0 → 4.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 +52 -7
- package/docs/DEPLOYMENT-MODES.md +56 -0
- package/docs/TROUBLESHOOTING.md +3 -1
- package/lib/handlers.js +92 -0
- package/lib/public-metadata.js +1 -1
- package/lib/public-pages.js +4 -4
- package/lib/slack-client.js +70 -17
- package/lib/token-store.js +279 -93
- package/lib/tools.js +160 -0
- package/lib/workflow-store.js +188 -0
- package/package.json +6 -3
- package/public/index.html +5 -4
- package/public/share.html +5 -5
- package/scripts/apply-template.js +117 -0
- package/scripts/setup-wizard.js +19 -0
- package/server.json +3 -3
- package/smithery.yaml +2 -0
- package/src/cli.js +3 -0
- package/src/server.js +58 -2
- package/templates/workflow-profiles/customer-feedback.json +10 -0
- package/templates/workflow-profiles/exec-monday.json +10 -0
- package/templates/workflow-profiles/incident-room.json +10 -0
- package/templates/workflow-profiles/oncall-handoff.json +10 -0
- package/templates/workflow-profiles/sprint-tracker.json +10 -0
- package/templates/workflow-profiles/support-triage.json +10 -0
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"profile_name": "sprint-tracker",
|
|
3
|
+
"workflow_kind": "product_launch_watch",
|
|
4
|
+
"channels": [],
|
|
5
|
+
"priority_people": [],
|
|
6
|
+
"retention_mode": "ephemeral",
|
|
7
|
+
"summary_cadence": "daily_8am",
|
|
8
|
+
"structured_keys": ["launch_signals", "feedback_themes", "blockers", "metrics", "next_actions"],
|
|
9
|
+
"_template_notes": "Apply with: slack-mcp --apply-template sprint-tracker --channels C0SPRINT,C0BUGS,C0LAUNCHES. Use during active release cycles. Returns structured JSON so downstream automation (Linear, Notion, status dashboards) can consume directly."
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"profile_name": "support-triage",
|
|
3
|
+
"workflow_kind": "support_inbox",
|
|
4
|
+
"channels": [],
|
|
5
|
+
"priority_people": [],
|
|
6
|
+
"retention_mode": "ephemeral",
|
|
7
|
+
"summary_cadence": "daily_8am",
|
|
8
|
+
"structured_keys": ["open_threads", "ack_lag", "owner_gaps", "escalations", "next_actions"],
|
|
9
|
+
"_template_notes": "Apply with: slack-mcp --apply-template support-triage --channels C0SUPPORT,C0ESCALATIONS. summary_cadence=daily_8am needs Pro or Team for the scheduled morning DM (rolling out Q2 2026). Free tier can run on_demand."
|
|
10
|
+
}
|