mirror of
https://github.com/eliasstepanik/core.git
synced 2026-01-11 21:28:29 +00:00
* Feat: add mcp oauth2.1 support * Fix: integration mcp is not loading * Feat: add slack integration --------- Co-authored-by: Manoj K <saimanoj58@gmail.com>
42 lines
1.0 KiB
JSON
42 lines
1.0 KiB
JSON
{
|
|
"name": "Slack extension",
|
|
"key": "slack",
|
|
"description": "Connect your workspace to Slack. Run your workflows from slack bookmarks",
|
|
"icon": "slack",
|
|
"mcp": {
|
|
"type": "stdio",
|
|
"url": "https://integrations.heysol.ai/slack/mcp/slack-mcp-server",
|
|
"args": [],
|
|
"env": {
|
|
"SLACK_MCP_XOXP_TOKEN": "${config:access_token}",
|
|
"SLACK_MCP_ADD_MESSAGE_TOOL": true
|
|
}
|
|
},
|
|
"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": ","
|
|
}
|
|
}
|
|
}
|