MCP.so
登录

김팔복TV의 Slack MCP Server 예제

@dev-palboksoft

关于 김팔복TV의 Slack MCP Server 예제

暂无概览

基本信息

分类

沟通协作

运行时

node

传输方式

stdio

发布者

dev-palboksoft

提交者

김서진

配置

使用下面的配置,将此服务器添加到你的 MCP 客户端。

{
  "mcpServers": {
    "kimpalbok-slack-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "kimpalbok-slack-mcp-server"
      ]
    },
    "env": {
      "SLACK_BOT_TOKEN": "xoxb-...",
      "SLACK_TEAM_ID": "T12345678"
    }
  }
}

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

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.

评论

沟通协作 分类下的更多 MCP 服务器