AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified Apache-2.0 Self-run

Slack Mcp

mcp-duolingo-slack-mcp · by duolingo

OAuth-based multi-user Slack MCP server with HTTP transport

No reviews yet
0 installs
35 views
0.0% view→install

Install

$ agentstack add mcp-duolingo-slack-mcp

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-duolingo-slack-mcp)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Slack Mcp? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Slack MCP Server

A read-only MCP (Model Context Protocol) server for Slack with OAuth 2.1 authentication.

[](https://opensource.org/licenses/Apache-2.0) [](https://www.python.org/downloads/)

Demo

https://github.com/user-attachments/assets/211bd428-209f-461a-b9a1-9cc85fd7c438

Available Tools

  • slack_get_channel_messages - Retrieve messages from channels
  • slack_get_thread_replies - Get conversation thread replies
  • slack_search_messages - Advanced message search with filters
  • slack_get_users - List workspace users or get specific profiles
  • slack_get_channels - List channels or get detailed info

Quick Start

1. Create Slack App

  1. Visit Slack API Apps and create a new app
  2. Under App Credentials, copy your Client ID and Client Secret
  3. Navigate to OAuth & Permissions and add these User Token Scopes: channels:history groups:history im:history mpim:history channels:read groups:read im:read mpim:read users:read users:read.email search:read
  4. Add Redirect URL under OAuth & Permissions:
  • For local testing: Use an HTTPS proxy like ngrok (E.g: https://abc123.ngrok.io/oauth2callback). See local development setup below.
  • For production: https://your-domain.com/oauth2callback

2. Installation

uv sync

3. Local Development Setup (HTTPS Proxy)

Slack requires HTTPS for OAuth callbacks. For local development, use ngrok or a similar HTTPS proxy:

# Visit https://ngrok.com/ to download ngrok and start the proxy
ngrok http 8001

Copy the HTTPS forwarding URL (e.g., https://abc123.ngrok.io/oauth2callback) and add it as a Redirect URL in your Slack app settings.

4. Configuration

Set required environment variables:

export SLACK_CLIENT_ID="your_client_id"
export SLACK_CLIENT_SECRET="your_client_secret"
# Use https://your-domain.com for production.
export SLACK_MCP_BASE_URI="http://localhost"
# Use https://your-domain.com for production.
export SLACK_EXTERNAL_URL="https://abc123.ngrok.io"
# Optional, if you want to run the MCP server on a different port.
export SLACK_MCP_PORT=8001

5. Run the Server

uv run python server.py

The server will start on http://localhost:8001 by default. Make sure your ngrok proxy is running alongside it for OAuth to work.

6. Configure Your MCP Client

Add to your MCP client configuration (e.g. ~/.cursor/mcp.json for Cursor):

{
  "mcpServers": {
    "slack": { "url": "http://localhost:8001/mcp", "transport": "http" }
  }
}

7. Authenticate

Authentication happens automatically via OAuth 2.1 when your MCP client first connects. Your client will open a browser window for Slack authorization — approve access and you're ready to go.

Deployment

For production deployment, you can run it inside docker:

docker build -t slack-mcp .
docker run -p 8001:8001 \
  -e SLACK_CLIENT_ID="your_client_id" \
  -e SLACK_CLIENT_SECRET="your_client_secret" \
  -e SLACK_MCP_BASE_URI="https://your-domain.com" \
  -e SLACK_EXTERNAL_URL="https://your-domain.com" \
  slack-mcp

Development

Run tests with uv run pytest.

License

This project is licensed under the Apache License 2.0 - see the [LICENSE](LICENSE) file for details.

Duolingo is hiring! Apply at https://www.duolingo.com/careers

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.