What can you do with it?
The Slack integration enables comprehensive team communication including sending direct messages, posting to channels, scheduling messages, and retrieving conversation history. You can find users and channels by name, send formatted messages with rich text, schedule messages for later delivery, and search through message history with keyword filtering. This integration is perfect for teams looking to automate their Slack communications, send notifications, and integrate with other business processes.How to use it?
Basic Command Structure
Parameters
Required:action
- The operation you want to perform (get_users, send_message, get_channels, schedule_message, get_messages)
channel
- Channel ID or name for channel operationsuser
- User ID or name for user operationstext
- Message content for sending messages
Tools
Get Users List
Retrieve all users in the workspace Parameters:action
(required) - Set to “get_users”
Send Direct Message
Send a direct message to a specific user Parameters:action
(required) - Set to “send_direct_message”user_id
(required) - User ID to send message totext
(required) - Message content
Get Channels List
Retrieve all channels in the workspace Parameters:action
(required) - Set to “get_channels”
Send Message to Channel
Post a message to a specific channel Parameters:action
(required) - Set to “send_channel_message”channel
(required) - Channel ID or name (with # prefix)text
(required) - Message content
Schedule Message
Schedule a message to be sent at a specific time Parameters:action
(required) - Set to “schedule_message”channel
(required) - Channel ID or nametext
(required) - Message contentpost_at
(required) - Unix timestamp for when to send the message
Get Messages with Keywords
Retrieve messages from a channel with optional keyword filtering Parameters:action
(required) - Set to “get_messages”channel
(required) - Channel ID to retrieve messages fromlimit
(optional) - Number of messages to retrieve (default: 100)keywords
(optional) - Array of keywords to filter messages