김팔복TV의 slack mcp server 예제 입니다.
If you want an AI assistant working directly with Kimpalbok Slack, the kimpalbok slack mcp server is the bridge. 김팔복TV의 slack mcp server 예제 입니다.
이 저장소는 김팔복TV에서 사용하는 Slack MCP(Model Context Protocol) Server의 예제 코드입니다. Slack 워크스페이스와 연동하여 다양한 채널/메시지/사용자 관련 기능을 제공합니다.
Once connected, the assistant can call these 10 tools directly:
SLACK_BOT_TOKEN — Slack 봇 토큰 (예: xoxb-...)SLACK_TEAM_ID — Slack 워크스페이스 팀 ID (예: T12345678)slack_list_channels — 워크스페이스의 공개 또는 사전 정의된 채널 목록 조회slack_post_message — 채널에 새 메시지 게시slack_reply_to_thread — 특정 메시지 스레드에 답장slack_add_reaction — 메시지에 이모지 반응 추가slack_get_channel_history — 채널에서 최근 메시지 가져오기slack_get_thread_replies — 메시지 스레드의 모든 답장 가져오기slack_get_users — 워크스페이스의 모든 사용자와 기본 프로필 정보 가져오기slack_get_user_profile — 특정 사용자의 상세 프로필 정보 가져오기Setup follows the standard MCP pattern: clone or install the server, then register it in your client's configuration file and restart the client. The configuration snippets on this page cover Claude Desktop, Claude Code and Cursor.
Before the server will start you need to supply 4 environment variables: SLACK_BOT_TOKEN, SLACK_TEAM_ID, SLACK_CHANNEL_IDS, TEAM_ID. Keep credentials in your client's env block or a secrets manager rather than committing them.
Communication servers earn their keep on volume — summarising channels and threads that would otherwise cost you an hour of scrollback. Kimpalbok Slack sits in that group, and the shape of its toolset — SLACK_BOT_TOKEN, SLACK_TEAM_ID, slack_list_channels among others — tells you what it is really for. Worth comparing against the other communication servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.
| Tool | What it does |
|---|---|
| SLACK_BOT_TOKEN | Slack 봇 토큰 (예: xoxb-...) |
| SLACK_TEAM_ID | Slack 워크스페이스 팀 ID (예: T12345678) |
| slack_list_channels | 워크스페이스의 공개 또는 사전 정의된 채널 목록 조회 |
| slack_post_message | 채널에 새 메시지 게시 |
| slack_reply_to_thread | 특정 메시지 스레드에 답장 |
| slack_add_reaction | 메시지에 이모지 반응 추가 |
| slack_get_channel_history | 채널에서 최근 메시지 가져오기 |
| slack_get_thread_replies | 메시지 스레드의 모든 답장 가져오기 |
| slack_get_users | 워크스페이스의 모든 사용자와 기본 프로필 정보 가져오기 |
| slack_get_user_profile | 특정 사용자의 상세 프로필 정보 가져오기 |
| Variable | Description | Required |
|---|---|---|
| SLACK_BOT_TOKEN | Credential the server authenticates with. | Yes |
| SLACK_TEAM_ID | Configuration value read at startup. | Optional |
| SLACK_CHANNEL_IDS | Configuration value read at startup. | Optional |
| TEAM_ID | Configuration value read at startup. | Optional |
Your assistant inside the workspace — read channels, search history, post messages and tame the noise.
Inbox intelligence — search, read, draft and send Gmail through your assistant with OAuth auto-setup.
Read and write Jira, Confluence, Bitbucket, JSM and Compass from your AI client — with your own permissions.
Read and send Telegram messages through your assistant — chats, channels and history via the client API.
Enables Discord bot integration with Model Context Protocol (MCP) compatible applications like Claude Desktop.
Exposes REST APIs defined by OpenAPI specifications as Model Context Protocol (MCP) tools, facilitating seamless integration into MCP-based workflows.