Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
SLACK_BOT_TOKENYesBot User OAuth Token (xoxb-...)
SLACK_DEFAULT_CHANNELNoFallback channel for slack_post_message

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
slack_list_channelsA

List all Slack channels accessible by the bot.

Returns a formatted list of channel names with their IDs and topics.

slack_read_channelA

Read the last N messages from a Slack channel.

Args: channel: Channel name (without #) or channel ID. limit: Number of messages to retrieve (default: 20, max: 100).

slack_post_messageA

Send a message to a Slack channel.

Args: channel: Channel name (without #) or channel ID. text: The message text to send. Supports Slack markdown.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.7/5.0

Scored across 3 tools

Disambiguation5/5

Each tool maps to a distinct Slack action+resource: listing channels, reading messages, and posting messages. There is no overlap in purpose or argument shape between them.

Naming Consistency5/5

All three tools use a consistent slack_ prefix with a clear verb_noun pattern (slack_list_channels, slack_read_channel, slack_post_message). The convention is predictable throughout.

Tool Count3/5

Three tools is on the thin side for a Slack integration; the set covers only the most basic read/write loop. It is functional but leaves little room for common adjacent operations.

Completeness3/5

Core operations (list channels, read messages, post message) are present, but there are notable gaps: no thread replies, reactions, message search, user/DM lookup, or message editing. Agents can do basic workflows but will hit dead ends on common Slack tasks.

Maintenance

ActivityMaintained
ResponsivenessUnresponsive