slack_list_channels(limit, cursor)
List public or pre-defined channels in the workspace
Parameters: limit (number, optional, default: 100, max: 200), cursor (string, optional)
slack_get_channel_history(channel_id, limit)
Get recent messages from a channel
Parameters: channel_id (string), limit (number, optional, default: 10)
slack_post_message(channel_id, text)
Post a new message to a Slack channel
Parameters: channel_id (string), text (string)
slack_reply_to_thread(channel_id, thread_ts, text)
Reply to a specific message thread
Parameters: channel_id (string), thread_ts (string), text (string)
slack_get_thread_replies(channel_id, thread_ts)
Get all replies in a message thread
Parameters: channel_id (string), thread_ts (string)
slack_add_reaction(channel_id, timestamp, reaction)
Add an emoji reaction to a message
Parameters: channel_id (string), timestamp (string), reaction (string)
slack_get_users(cursor, limit)
Get list of workspace users with basic profile information
Parameters: cursor (string, optional), limit (number, optional, default: 100, max: 200)
slack_get_user_profile(user_id)
Get detailed profile information for a specific user
Parameters: user_id (string)