Skip to main content
Glama
oregpt

Slack MCP Server

by oregpt

Server Quality Checklist

58%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v1.0.0

  • Disambiguation5/5

    Each tool has a clearly distinct purpose: channels_list lists channels, conversations_add_message posts messages, conversations_history retrieves channel history, and conversations_replies fetches thread replies. There is no overlap in functionality, making it easy for an agent to select the correct tool.

    Naming Consistency4/5

    The tool names follow a consistent snake_case pattern and use descriptive verbs like 'list', 'add', and 'history'. However, 'channels_list' deviates slightly from the 'conversations_' prefix used by the other three tools, which is a minor inconsistency.

    Tool Count3/5

    With only 4 tools, the server feels thin for a Slack integration, as it lacks common operations like updating or deleting messages, managing users, or handling reactions. While the tools cover basic messaging and channel listing, the scope is limited, potentially requiring workarounds for full Slack workflows.

    Completeness2/5

    The tool set is significantly incomplete for a Slack server. It covers listing channels and basic message operations (posting, retrieving history, and thread replies), but misses essential CRUD actions like editing or deleting messages, user management, file handling, and event subscriptions. This will likely cause agent failures in more complex interactions.

  • Average 3.5/5 across 4 of 4 tools scored.

    See the Tool Scores section below for per-tool breakdowns.

    • No community issues in the last 6 months
    • 0 commits in the last 12 weeks
    • No stable releases found
    • No critical vulnerability alerts
    • No high-severity vulnerability alerts
    • No code scanning findings
    • CI status not available
  • Add a LICENSE file by following GitHub's guide. Once GitHub recognizes the license, the system will automatically detect it within a few hours.

    If the license does not appear after some time, you can manually trigger a new scan using the MCP server admin interface.

    MCP servers without a LICENSE cannot be installed.

  • This repository includes a README.md file.

  • No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.

    Tip: use the "Try in Browser" feature on the server page to seed initial usage.

  • Add a glama.json file to provide metadata about your server.

  • If you are the author, simply .

    If the server belongs to an organization, first add glama.json to the root of your repository:

    {
      "$schema": "https://glama.ai/mcp/schemas/server.json",
      "maintainers": [
        "your-github-username"
      ]
    }

    Then . Browse examples.

  • Add related servers to improve discoverability.

How to sync the server with GitHub?

Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.

To manually sync the server, click the "Sync Server" button in the MCP server admin interface.

How is the quality score calculated?

The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).

Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.

Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).

Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.

Tool Scores

  • Behavior2/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions 'Supports pagination and filtering,' which adds some context beyond the input schema, but it doesn't cover critical aspects like authentication needs (implied by 'accessToken' but not explained), rate limits, error handling, or what the output looks like (e.g., message format). For a tool with 5 parameters and no annotations, this is a significant gap in transparency.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is highly concise and well-structured: two sentences that front-load the core purpose ('Retrieves message history...') and follow with key features ('Supports pagination and filtering'). Every word earns its place, with no redundancy or fluff, making it easy to scan and understand quickly.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness2/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    Given the tool's complexity (5 parameters, no annotations, no output schema), the description is incomplete. It lacks details on authentication requirements, output format (e.g., what data is returned), error conditions, or how pagination/filtering work in practice. While it states the purpose clearly, it doesn't provide enough context for an agent to use the tool effectively without relying heavily on the input schema and external knowledge.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters3/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    Schema description coverage is 100%, meaning all parameters are documented in the input schema. The description doesn't add any specific parameter details beyond what's in the schema (e.g., it doesn't explain 'limit' formats or 'cursor' usage further). Since the schema handles the heavy lifting, the baseline score of 3 is appropriate, as the description provides no extra parameter semantics.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose4/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description clearly states the tool's purpose: 'Retrieves message history from a Slack channel, DM, or thread.' It specifies the verb ('retrieves'), resource ('message history'), and scope ('Slack channel, DM, or thread'), making it easy to understand what the tool does. However, it doesn't explicitly differentiate from sibling tools like 'conversations_replies' (which might retrieve thread-specific replies), leaving room for slight ambiguity.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines3/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description implies usage by mentioning 'Supports pagination and filtering,' which suggests it's for retrieving historical messages with optional controls. However, it doesn't provide explicit guidance on when to use this tool versus alternatives like 'conversations_replies' (for thread replies) or 'channels_list' (for listing channels). No exclusions or prerequisites are stated, leaving usage context somewhat inferred.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior3/5

    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 mentions pagination and sorting, which are useful behavioral traits, but does not cover critical aspects like authentication requirements (implied by accessToken but not explained), rate limits, error handling, or what the output looks like. It adds some context but leaves significant gaps for a tool with multiple parameters and no output schema.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is a single, well-structured sentence that efficiently covers the tool's purpose, types, and key features (sorting, pagination) without unnecessary words. It is front-loaded with the main action and resource, making it easy to scan and understand quickly.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness3/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    Given the complexity (5 parameters, no annotations, no output schema), the description is incomplete. It covers the basic purpose and some features but lacks details on authentication, error handling, output format, and explicit differentiation from siblings. While concise, it does not fully compensate for the missing structured data, leaving the agent with insufficient context for optimal use.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters3/5

    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 parameters thoroughly. The description adds minimal value beyond the schema by mentioning 'popularity sorting' (implied by the sort parameter) and 'pagination' (implied by cursor), but does not provide additional syntax, format details, or usage examples. This meets the baseline for high schema coverage.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose4/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description clearly states the action ('Lists') and resource ('workspace channels'), specifying the types (public, private, DMs, group DMs) and optional features (popularity sorting, pagination). However, it does not explicitly differentiate from sibling tools like conversations_history or conversations_replies, which focus on message retrieval rather than channel listing, leaving some ambiguity in tool selection.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines3/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description implies usage for listing channels with type filtering and sorting, but provides no explicit guidance on when to use this tool versus alternatives like conversations_history for message access. It mentions 'optional popularity sorting' and 'pagination' as features, which hints at context but lacks clear when/when-not instructions or named alternatives.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior3/5

    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 mentions pagination support, which is valuable behavioral context. However, it doesn't disclose other important traits like rate limits, authentication requirements (though schema covers token), error conditions, or response format details.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is extremely concise (two sentences) with zero wasted words. It's front-loaded with the core purpose and follows with important behavioral information about pagination. Every sentence earns its place.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness3/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    For a read operation with 6 parameters and no output schema, the description provides adequate but minimal context. It covers the core purpose and pagination behavior but lacks details about response format, error handling, or how results are structured. With no annotations and no output schema, more completeness would be beneficial.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters3/5

    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 6 parameters thoroughly. The description adds minimal value beyond the schema - it mentions 'channel and thread timestamp' which maps to channel_id and thread_ts parameters, but doesn't provide additional semantic context beyond what's in the parameter descriptions.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose4/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description clearly states the action ('fetches all messages') and target resource ('in a specific thread by channel and thread timestamp'), providing a specific verb+resource combination. However, it doesn't explicitly differentiate from sibling tools like conversations_history, which might also fetch messages but from different contexts.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines3/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description implies usage context ('specific thread') but doesn't explicitly state when to use this tool versus alternatives like conversations_history (for channel messages) or conversations_add_message (for adding messages). No explicit exclusions or prerequisites are mentioned.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior4/5

    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 effectively communicates critical behavioral traits: the safety restriction (disabled by default requiring environment variable), the mutation nature ('Posts a message'), and format support (markdown/plain text). However, it lacks details about rate limits, error conditions, or response format that would be helpful for a write operation.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is extremely concise with only two sentences, both of which earn their place. The first sentence establishes core functionality, the second provides critical safety information. No wasted words, and the most important information (the tool's purpose) is front-loaded.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness3/5

    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 provides basic but incomplete context. It covers the core action and safety restriction adequately, but lacks information about return values, error handling, permissions beyond the token scope mentioned in the schema, or how it differs from potential alternative messaging approaches. The safety note is valuable but doesn't fully compensate for missing behavioral details.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters3/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    With 100% schema description coverage, the input schema already documents all 5 parameters thoroughly. The description adds no additional parameter semantics beyond what's in the schema - it doesn't explain parameter relationships, provide examples, or clarify edge cases. The baseline score of 3 reflects adequate but minimal value addition from the description.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose5/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description clearly states the specific action ('Posts a message') and target resources ('to a channel, thread, or DM'), distinguishing it from sibling tools like channels_list (listing) or conversations_history (reading). It includes additional functionality details ('Supports markdown and plain text') that further clarify its purpose beyond basic posting.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines3/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description implies usage context through the safety note about being disabled by default, but does not explicitly state when to use this tool versus alternatives. No guidance is provided on when to choose this tool over other messaging approaches or sibling tools, leaving usage decisions to inference from the purpose statement alone.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

GitHub Badge

Glama performs regular codebase and documentation scans to:

  • Confirm that the MCP server is working as expected.
  • Confirm that there are no obvious security issues.
  • Evaluate tool definition quality.

Our badge communicates server capabilities, safety, and installation instructions.

Card Badge

Agenticledger_MCP_Slack MCP server

Copy to your README.md:

Score Badge

Agenticledger_MCP_Slack MCP server

Copy to your README.md:

Latest Blog Posts

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/oregpt/Agenticledger_MCP_Slack'

If you have feedback or need assistance with the MCP directory API, please join our Discord server