This MCP server, developed by Lars Hagen, enables AI agents to interact with Slack workspaces as users. Built with TypeScript and leveraging the Model Context Protocol SDK, it provides tools for channel management, messaging, reactions, and user profile retrieval. The implementation focuses on user-level interactions, offering functionality like thread replies and emoji reactions. It's particularly useful for AI assistants or automation systems needing to engage in Slack conversations, enabling use cases such as automated responses, channel monitoring, or user analytics without requiring bot-specific permissions.
まだレビューはありません. 最初のレビューを投稿しましょう!
会話に参加するにはサインインしてください
List public channels in the workspace. Optional inputs: limit (number, default: 100, max: 200) for maximum channels to return, cursor (string) for pagination. Returns: List of channels with their IDs and information.
Post a new message to a Slack channel. Required inputs: channel_id (string) for the ID of the channel to post to, text (string) for the message text to post. Returns: Message posting confirmation and timestamp.
Reply to a specific message thread. Required inputs: channel_id (string) for the channel containing the thread, thread_ts (string) for the timestamp of the parent message, text (string) for the reply text. Returns: Reply confirmation and timestamp.
Add an emoji reaction to a message. Required inputs: channel_id (string) for the channel containing the message, timestamp (string) for the message timestamp to react to, reaction (string) for the emoji name without colons. Returns: Reaction confirmation.
Get recent messages from a channel. Required inputs: channel_id (string) for the channel ID. Optional inputs: limit (number, default: 10) for number of messages to retrieve. Returns: List of messages with their content and metadata.
Get all replies in a message thread. Required inputs: channel_id (string) for the channel containing the thread, thread_ts (string) for the timestamp of the parent message. Returns: List of replies with their content and metadata.
Get list of workspace users with basic profile information. Optional inputs: cursor (string) for pagination, limit (number, default: 100, max: 200) for maximum users to return. Returns: List of users with their basic profiles.
Get detailed profile information for a specific user. Required inputs: user_id (string) for the user's ID. Returns: Detailed user profile information.