Slack MCP Server
Provides tools for interacting with Slack workspaces, including listing channels, posting messages, replying to threads, adding emoji reactions, retrieving channel history and thread replies, and managing user profiles.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Slack MCP Serverpost a message to #general saying the weekly report is ready"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
김팔복TV의 Slack MCP Server 예제
이 저장소는 김팔복TV에서 사용하는 Slack MCP(Model Context Protocol) Server의 예제 코드입니다. Slack 워크스페이스와 연동하여 다양한 채널/메시지/사용자 관련 기능을 제공합니다.
주요 기능
워크스페이스의 공개 또는 사전 정의된 채널 목록 조회
채널에 메시지 게시 및 스레드 답장
메시지에 이모지 반응 추가
채널 메시지 히스토리 및 스레드 답글 조회
워크스페이스 사용자 및 프로필 정보 조회
Related MCP server: MCP Server for Slack
설치 및 빌드
{
"mcpServers": {
"kimpalbok-slack-mcp-server": {
"command": "npx",
"args": [
"-y",
"kimpalbok-slack-mcp-server"
]
},
"env": {
"SLACK_BOT_TOKEN": "xoxb-...",
"SLACK_TEAM_ID": "T12345678"
}
}
}환경 변수 설정
실행 전 아래 환경 변수를 반드시 설정해야 합니다.
SLACK_BOT_TOKEN: Slack 봇 토큰 (예:xoxb-...)SLACK_TEAM_ID: Slack 워크스페이스 팀 ID (예:T12345678)(선택)
SLACK_CHANNEL_IDS: 사전 정의된 채널 ID 목록 (쉼표로 구분)
예시:
export SLACK_BOT_TOKEN=xoxb-...
export SLACK_TEAM_ID=T12345678
export SLACK_CHANNEL_IDS=C12345678,C23456789Slack 봇 설정
앱 및 봇 설정 링크 https://api.slack.com/apps
"OAuth & Permissions" 메뉴에서 "Bot User OAuth Token"을 참고하세요.
"OAuth & Permissions" 메뉴에서 "Scopes"에서 권한을 추가하세요.
SLACK_TEAM_ID 확인 방법
https://apps.slack.com 으로 접속 후 브라우저에서 실행해보세요.
URL의 "T..."로 시작하는 문자열이 TEAM_ID입니다.
사용 예시
서버는 MCP 프로토콜을 통해 다양한 도구(tool)를 제공합니다.
아래는 지원하는 주요 도구와 설명입니다.
도구 이름 | 설명 |
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 | 특정 사용자의 상세 프로필 정보 가져오기 |
각 도구의 입력 파라미터와 반환값은 코드의 Tool 정의 및 TypeScript 타입을 참고하세요.
참고
본 서버는 MCP(Model Context Protocol) 기반의 서버로, 표준 입력/출력(stdio) 기반 트랜스포트로 동작합니다.
실제 Slack API 연동을 위해서는 올바른 권한의 Slack 봇 토큰이 필요합니다.
문의: 김팔복TV
Available Tools
8 toolsslack_add_reactionC
메시지에 이모지 반응 추가
| Name | Required | Description | Default |
|---|---|---|---|
| channel_id | Yes | 반응을 추가할 메시지가 있는 채널의 ID | |
| timestamp | Yes | 반응을 추가할 메시지의 타임스탬프 | |
| reaction | Yes | 이모지 반응의 이름(콜론 없이 입력) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It states the action but doesn't disclose behavioral traits like whether this requires specific permissions, if reactions are reversible, rate limits, or what happens on success/failure. For a mutation tool with zero annotation coverage, this is a significant gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence in Korean that directly states the tool's purpose. It's appropriately sized and front-loaded with zero wasted words, making it easy to understand quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given this is a mutation tool (adding reactions) with no annotations and no output schema, the description is incomplete. It doesn't cover behavioral aspects like permissions, side effects, or response format. For a tool with 3 parameters and no structured safety hints, more context is needed.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all three parameters (channel_id, timestamp, reaction) with clear descriptions. The description adds no additional parameter semantics beyond what the schema provides, but the baseline is 3 when schema coverage is high.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('메시지에 이모지 반응 추가' translates to 'Add emoji reaction to message') with specific verb+resource. It distinguishes from siblings like posting messages or getting channel history by focusing on reactions. However, it doesn't explicitly differentiate from potential similar tools (though none exist in the sibling list).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives. The description doesn't mention prerequisites (e.g., needing message access), exclusions, or comparisons with sibling tools like slack_post_message. Usage is implied but not explicitly stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
slack_get_channel_historyC
채널에서 최근 메시지 가져오기
| Name | Required | Description | Default |
|---|---|---|---|
| channel_id | Yes | 메시지를 가져올 채널의 ID | |
| limit | No | 가져올 메시지 개수 (기본값 10) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It states the action but lacks details on permissions, rate limits, pagination, or response format. This is a significant gap for a tool that likely involves API calls and data retrieval.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, clear sentence with no wasted words. It's front-loaded and efficiently conveys the core purpose without unnecessary elaboration.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the lack of annotations and output schema, the description is incomplete. It doesn't address behavioral aspects like authentication needs, error handling, or what the returned messages look like, which are crucial for an agent to use this tool effectively in a Slack context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents both parameters (channel_id and limit) adequately. The description doesn't add any additional meaning or context beyond what the schema provides, which meets the baseline for high coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description '채널에서 최근 메시지 가져오기' clearly states the action (가져오기/fetch) and resource (채널 메시지/channel messages), making the purpose understandable. However, it doesn't explicitly differentiate from sibling tools like 'slack_get_thread_replies' or 'slack_post_message', which prevents a perfect score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention context like retrieving general channel history versus thread-specific replies or user profiles, leaving the agent to infer usage from tool names alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
slack_get_thread_repliesC
메시지 스레드의 모든 답장 가져오기
| Name | Required | Description | Default |
|---|---|---|---|
| channel_id | Yes | 스레드가 포함된 채널의 ID | |
| thread_ts | Yes | parent 메시지의 타임스탬프(형식: '1234567890.123456'). 점이 없는 경우 뒤 6자리에 점을 추가하여 변환 가능. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. It states what the tool does but doesn't describe important behaviors: whether it's read-only (implied by '가져오기' but not explicit), pagination/rate limits, authentication requirements, error conditions, or what format the replies are returned in. For a tool with zero annotation coverage, this is insufficient.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence in Korean that directly states the tool's purpose. There's zero wasted language or redundancy. It's appropriately sized for a simple retrieval tool and gets straight to the point.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no annotations and no output schema, the description is incomplete. It doesn't explain what '가져오기' returns (reply objects, just text, metadata?), error handling, or operational constraints. For a tool that presumably returns multiple items (replies), more context about the response format and behavior would be helpful.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so both parameters are well-documented in the schema. The description adds no additional parameter information beyond what's already in the schema (channel_id and thread_ts are fully described there). This meets the baseline of 3 when schema does the heavy lifting, but adds no extra value.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('가져오기' - get/fetch) and resource ('메시지 스레드의 모든 답장' - all replies in a message thread). It distinguishes from siblings like slack_get_channel_history (general channel history) and slack_reply_to_thread (posting replies). However, it doesn't explicitly mention Slack as the platform, though this is implied by the tool name.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (like needing a specific channel or thread), nor does it differentiate from similar tools like slack_get_channel_history which might also retrieve thread content. There's no 'when-not' or alternative tool recommendation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
slack_get_user_profileC
특정 사용자의 상세 프로필 정보 가져오기
| Name | Required | Description | Default |
|---|---|---|---|
| user_id | Yes | 사용자의 ID |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden for behavioral disclosure. It states the tool fetches data ('가져오기'), implying a read-only operation, but doesn't specify authentication requirements, rate limits, error conditions, or what happens if the user ID is invalid. For a tool with zero annotation coverage, this leaves significant behavioral gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, clear sentence in Korean that directly states the tool's function without unnecessary words. It's appropriately sized for a simple tool, though it could be slightly more informative without losing conciseness.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no annotations, no output schema, and a simple input schema, the description is incomplete. It lacks details on return values (e.g., what profile fields are included), error handling, or behavioral traits like permissions. For a tool fetching user data in a collaborative platform like Slack, more context is needed to ensure proper usage.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage, with 'user_id' documented as '사용자의 ID' (user's ID). The description doesn't add any parameter-specific details beyond what the schema provides, such as format examples or constraints. With high schema coverage, the baseline score of 3 is appropriate, as the description doesn't compensate but doesn't need to.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states the action ('가져오기' - get/fetch) and target ('사용자의 상세 프로필 정보' - detailed user profile information), providing a basic purpose. However, it doesn't differentiate from sibling tools like 'slack_get_users' (which likely lists multiple users) or specify what constitutes 'detailed' profile information versus basic user data.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives. The description doesn't mention prerequisites (e.g., needing a user ID), exclusions, or comparisons to siblings like 'slack_get_users' for bulk retrieval or other profile-related tools. Usage context is implied but not explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
slack_get_usersC
워크스페이스의 모든 사용자와 기본 프로필 정보 가져오기
| Name | Required | Description | Default |
|---|---|---|---|
| cursor | No | 다음 페이지 결과를 위한 페이지네이션 커서 | |
| limit | No | 반환할 최대 사용자 수 (기본값 100, 최대 200) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It states what the tool does but doesn't describe key behavioral traits such as pagination behavior (implied by the cursor parameter but not explained), rate limits, authentication needs, or what '기본 프로필 정보' (basic profile information) specifically includes. This leaves significant gaps for an agent to understand how to use it effectively.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence in Korean that directly states the tool's purpose without any fluff or redundancy. It's appropriately sized and front-loaded, making it easy to parse quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity of a user-fetching tool with pagination (2 parameters) and no annotations or output schema, the description is incomplete. It doesn't explain the return format, pagination mechanics beyond the cursor parameter, or error handling, which are crucial for an agent to use this tool correctly in a Slack workspace context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage, with clear documentation for both parameters (cursor for pagination, limit with default and max). The description adds no additional parameter semantics beyond what the schema provides, so it meets the baseline of 3 where the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('가져오기' - get/fetch) and resource ('워크스페이스의 모든 사용자와 기본 프로필 정보' - all users and basic profile information in the workspace), providing a specific verb+resource combination. However, it doesn't explicitly distinguish this tool from sibling tools like 'slack_get_user_profile' which might fetch a single user's profile, leaving some ambiguity about sibling differentiation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention when to use this bulk user-fetching tool instead of 'slack_get_user_profile' for individual profiles, or any prerequisites like authentication requirements, leaving the agent with no usage context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
slack_list_channelsA
workspace의 public 또는 pre-defined된 채널을 페이지네이션과 함께 목록으로 표시
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | 반환할 최대 채널 수 (기본값 100, 최대 200) | |
| cursor | No | 다음 페이지 결과를 위한 페이지네이션 커서 |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses pagination behavior ('페이지네이션과 함께' - with pagination), which is valuable context not in the schema. However, it doesn't mention rate limits, authentication needs, whether this is a read-only operation, or what the return format looks like. For a listing tool with no annotations, this leaves significant behavioral gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the core purpose. Every word earns its place by specifying the resource scope (public/pre-defined channels) and key behavior (listing with pagination). No wasted words or redundant information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity (listing with pagination), no annotations, and no output schema, the description is minimally adequate. It covers the basic purpose and pagination behavior but lacks details about authentication, rate limits, return format, error conditions, or how it differs from sibling tools. For a tool with no structured safety or output information, more context would be helpful.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already fully documents both parameters (limit and cursor). The description adds no additional parameter semantics beyond what's in the schema. It mentions pagination generally but doesn't explain how the cursor parameter works or provide usage examples. Baseline 3 is appropriate when the schema does all the work.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('목록으로 표시' - list/display) and resource ('workspace의 public 또는 pre-defined된 채널' - public or pre-defined channels in workspace). It distinguishes from siblings by focusing on listing channels rather than posting messages, getting history, or managing users. However, it doesn't explicitly differentiate from potential similar listing tools that might exist.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage context by specifying 'public 또는 pre-defined된 채널' (public or pre-defined channels), suggesting this is for viewing available channels rather than private ones. However, it doesn't provide explicit guidance on when to use this vs. alternatives like slack_get_users or slack_get_channel_history, nor does it mention prerequisites or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
slack_post_messageC
Slack 채널에 새 메시지 게시
| Name | Required | Description | Default |
|---|---|---|---|
| channel_id | Yes | 메시지를 게시할 채널의 ID | |
| text | Yes | 게시할 메시지 내용 |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. While '게시' (post) implies a write operation, it doesn't specify permissions needed, rate limits, whether the message is ephemeral or permanent, or what happens on failure. This is inadequate for a mutation tool with zero annotation coverage.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence in Korean that directly states the tool's purpose with zero wasted words. It's appropriately sized and front-loaded, making it easy for an agent to parse quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a mutation tool with no annotations and no output schema, the description is insufficient. It doesn't cover behavioral aspects like authentication requirements, error handling, or response format. Given the complexity of posting to Slack (which involves permissions, formatting options, etc.), more context is needed.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already fully documents both parameters (channel_id and text). The description adds no additional parameter information beyond what's in the schema, such as format examples or constraints. Baseline 3 is appropriate when schema does all the work.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('게시' meaning 'post') and resource ('Slack 채널에 새 메시지' meaning 'new message to Slack channel'), providing a specific verb+resource combination. However, it doesn't differentiate from sibling tools like slack_reply_to_thread or slack_add_reaction, which also involve posting content to Slack.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention when to use slack_post_message versus slack_reply_to_thread for threaded replies, or slack_add_reaction for reactions, leaving the agent without context for tool selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
slack_reply_to_threadC
Slack에서 특정 메시지 스레드에 답장
| Name | Required | Description | Default |
|---|---|---|---|
| channel_id | Yes | 스레드가 포함된 채널의 ID | |
| thread_ts | Yes | parent 메시지의 타임스탬프(형식: '1234567890.123456'). 점이 없는 경우 뒤 6자리에 점을 추가하여 변환 가능. | |
| text | Yes | 답장할 메시지 내용 |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It states the tool replies to a thread, implying a write operation, but lacks details on permissions required, rate limits, error conditions, or what happens if the thread doesn't exist. This is a significant gap for a mutation tool with zero annotation coverage.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence in Korean that directly states the tool's purpose without any wasted words. It is appropriately sized and front-loaded, making it easy to understand at a glance.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (a write operation with no annotations and no output schema), the description is incomplete. It lacks behavioral details like success/error responses, side effects, or integration with sibling tools. While the schema covers parameters well, the overall context for safe and effective use is insufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 100%, so the schema already documents all three parameters thoroughly. The description adds no additional meaning beyond what the schema provides, such as explaining parameter relationships or usage examples. Baseline 3 is appropriate when the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('답장' meaning 'reply') and the target resource ('특정 메시지 스레드' meaning 'specific message thread') in Slack. It distinguishes from sibling tools like 'slack_post_message' (general posting) by specifying thread replies, though it doesn't explicitly contrast with other siblings like 'slack_add_reaction'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., needing a thread to reply to), exclusions, or comparisons to siblings like 'slack_post_message' for non-threaded messages or 'slack_get_thread_replies' for reading instead of writing.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
8 tool updates
- First observed
slack_add_reaction - First observed
slack_get_channel_history - First observed
slack_get_thread_replies - First observed
slack_get_user_profile - First observed
slack_get_users - First observed
slack_list_channels - First observed
slack_post_message - First observed
slack_reply_to_thread
TDQS
Every tool has a clearly distinct purpose targeting specific Slack operations: adding reactions, retrieving channel history, getting thread replies, fetching user profiles, listing users, listing channels, posting messages, and replying to threads. There is no overlap or ambiguity between these functions.
All tools follow a consistent 'slack_verb_noun' pattern with snake_case throughout, such as slack_add_reaction, slack_get_channel_history, and slack_post_message. This predictable naming makes it easy for agents to understand and select the right tool.
With 8 tools, this server is well-scoped for a Slack integration, covering core messaging, user management, and channel operations without being overwhelming. Each tool serves a clear and necessary function in the domain.
The toolset provides strong coverage for core Slack workflows like messaging, reactions, threads, and user/channel listing. Minor gaps exist, such as updating or deleting messages, but agents can work around these with the available tools for most common tasks.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Enable interaction with Slack workspaces. Supports subscribing to Slack events through Resources.
Model Context Protocol server for Studex tools, notifications, and profile integrations
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
Model Context Protocol server for the Apideck Unified API. Connect any MCP-compatible agent framework to 100+ accounting systems, HRIS platforms, file storage providers, and more through one integration. More information https://www.apideck.com/mcp-server
Related MCP Servers
- AlicenseAqualityCmaintenanceEnables interaction with Slack workspaces as a user, supporting channel listing, message posting, threading, reactions, and user management via the Slack API.811MIT
- AlicenseBqualityCmaintenanceA Model Context Protocol server implementation that enables AI assistants to interact with Slack workspaces, allowing them to browse channels, send messages, reply to threads, add reactions, and retrieve user information.9182Apache 2.0
- AlicenseAqualityBmaintenanceA server implementing Model Context Protocol that enables AI assistants to interact with Slack API through a standardized interface, providing tools for messaging, channel management, user information retrieval, and more.11110Apache 2.0
- FlicenseNot gradedqualityDmaintenanceA Model Context Protocol server that integrates with Slack API, allowing users to send messages, view channel history, manage channels, send direct messages, and retrieve user lists from Slack workspaces.1-
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/dev-palboksoft/kimpalbok-slack-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server