Compare commits

..

1 Commits

Author SHA1 Message Date
Basil Hosmer
86c54b5466 feat: update Slack plugin to HTTP transport with OAuth config
- Switch from SSE to HTTP transport
- Update URL from /sse to /mcp endpoint
- Add OAuth clientId and callbackPort for Claude Code auth flow
2026-02-17 15:07:52 -05:00
2 changed files with 6 additions and 3 deletions

View File

@@ -6,7 +6,6 @@
"name": "Anthropic",
"email": "support@anthropic.com"
},
"showInstallCountsForOfficialOnly": true,
"plugins": [
{
"name": "typescript-lsp",

View File

@@ -1,6 +1,10 @@
{
"slack": {
"type": "sse",
"url": "https://mcp.slack.com/sse"
"type": "http",
"url": "https://mcp.slack.com/mcp",
"oauth": {
"clientId": "1601185624273.8899143856786",
"callbackPort": 3118
}
}
}