A containerized version of "Slack MCP Server"
Repository: modelcontextprotocol/servers
MCP Server for the Slack API, enabling Claude to interact with Slack workspaces.
The containers are built automatically and are available on the GitHub Container Registry.
- Pull the Docker image:
docker pull ghcr.io/metorial/mcp-container--modelcontextprotocol--servers--slack
- Run the container:
docker run -i --rm \
-e SLACK_BOT_TOKEN=slack-bot-token -e SLACK_TEAM_ID=slack-team-id \
ghcr.io/metorial/mcp-container--modelcontextprotocol--servers--slack "cd ./src/slack && node ./dist/index.js"
--rm
removes the container after it exits, so you don't have to clean up manually.-i
allows you to interact with the container in your terminal.
The container supports the following configuration options:
SLACK_BOT_TOKEN
SLACK_TEAM_ID
{
"mcpServers": {
"slack": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/metorial/mcp-container--modelcontextprotocol--servers--slack",
"cd ./src/slack && node ./dist/index.js"
],
"env": {
"SLACK_BOT_TOKEN": "slack-bot-token",
"SLACK_TEAM_ID": "slack-team-id"
}
}
}
}
Please refer to the license provided in the project repository for more information.
Contributions are welcome! If you notice any issues or have suggestions for improvements, please open an issue or submit a pull request.
Containerized with ❤️ by Metorial