MCP.so
Sign In
Servers

김팔복TV의 Slack MCP Server 예제

@dev-palboksoft

Overview

What is 김팔복TV의 Slack MCP Server 예제?

This server is an example Slack MCP (Model Context Protocol) server used by 김팔복TV. It integrates with a Slack workspace to provide tools for managing channels, messages, and user profiles via the MCP protocol.

How to use 김팔복TV의 Slack MCP Server 예제?

Install and run via npx -y kimpalbok-slack-mcp-server. Configure environment variables SLACK_BOT_TOKEN (bot token), SLACK_TEAM_ID (workspace ID), and optionally SLACK_CHANNEL_IDS (predefined channel IDs). The server uses stdio transport and exposes tools like slack_list_channels, slack_post_message, slack_reply_to_thread, slack_add_reaction, slack_get_channel_history, slack_get_thread_replies, slack_get_users, and slack_get_user_profile.

Key features of 김팔복TV의 Slack MCP Server 예제

  • List public or predefined channels in the workspace
  • Post new messages to channels
  • Reply to message threads
  • Add emoji reactions to messages
  • Retrieve recent channel message history
  • Fetch all replies in a message thread
  • Get workspace users and basic profile info
  • View detailed profile of a specific user

Use cases of 김팔복TV의 Slack MCP Server 예제

  • Automate sending notifications to Slack channels
  • Build conversational agents that read and reply in threads
  • Collect user information or channel activity for analytics
  • Manage emoji reactions for feedback or moderation
  • Monitor thread discussions and reply programmatically

FAQ from 김팔복TV의 Slack MCP Server 예제

What is MCP and how does this server use it?

MCP (Model Context Protocol) is a protocol for tool-based server communication. This server uses stdin/stdout transport to expose its Slack tools to MCP clients.

What dependencies or runtime are required?

Node.js and npx are required. The server is run via npx -y kimpalbok-slack-mcp-server. A valid Slack Bot User OAuth token and workspace ID must be set as environment variables.

Where does the data live?

All data resides in the connected Slack workspace. The server reads and writes messages, reactions, and user profiles through the Slack API.

What are the known limits?

The server requires appropriate Slack bot scopes (set in the Slack API app settings). It does not support private channels unless the bot is invited and the channel ID is provided in SLACK_CHANNEL_IDS.

How is authentication handled?

Authentication uses a Slack Bot User OAuth token (SLACK_BOT_TOKEN) and the workspace team ID (SLACK_TEAM_ID). The token must have the necessary scopes for the tools used.

More from Communication