core/integrations/slack/spec.json
Harshith Mullapudi 8d9ddcf375
Fix: core cli to work with core repo (#26)
* Fix: core cli to work with core repo

* Fix: cli working and mcp proxy
2025-07-22 10:17:40 +05:30

41 lines
943 B
JSON

{
"name": "Slack extension",
"key": "slack",
"description": "Connect your workspace to Slack. Run your workflows from slack bookmarks",
"icon": "slack",
"mcp": {
"type": "stdio",
"url": "",
"args": [ ],
"env": {
"SLACK_MCP_XOXP_TOKEN": "${config:access_token}"
}
},
"auth": {
"OAuth2": {
"token_url": "https://slack.com/api/oauth.v2.access",
"authorization_url": "https://slack.com/oauth/v2/authorize",
"scopes": [
"stars:read",
"team:read",
"stars:write",
"users:read",
"channels:read",
"groups:read",
"im:read",
"im:history",
"mpim:read",
"mpim:write",
"mpim:history",
"channels:history",
"chat:write",
"reactions:read",
"reactions:write",
"users.profile:read"
],
"scope_identifier": "user_scope",
"scope_separator": ","
}
}
}