Medusa Slack Gate
Human-in-the-loop approval gate for MCP agents, classifying tool calls by risk and requiring Slack-based human approval for medium/high risk actions.
README
Medusa Slack Gate
Human-in-the-loop approval for autonomous AI agents — enforced where teams already work: Slack.
Built for the Slack Agent Builder Challenge (Salesforce/Devpost).
⚠️ Eligibility note: Quebec residents are excluded from this hackathon's prize track per the official rules ("Canada, excluding Quebec"). This submission is a portfolio/proof-of-concept build, not a prize entry.
The Problem
Autonomous AI agents are getting real tool access — posting to channels, updating user roles, writing to databases. Most agent frameworks have no concept of "this action is risky enough that a human should see it first." One bad tool call and an agent can broadcast a false outage notice, grant admin access, or wipe production data — with nobody in the loop until it's already done.
The Solution: 4-Pillar Zero-Trust Gate
Medusa Slack Gate wraps any MCP-connected agent with a deterministic risk gate:
- Risk classification — every tool call is scored LOW / MEDIUM / HIGH based on the tool name and payload (e.g. anything touching
user_role,admin, orbroadcastkeys is automatically HIGH) - Auto-pass for LOW risk — reads, replies, and other non-destructive actions execute immediately, no friction
- Freeze + human approval for MEDIUM/HIGH — the action is held, logged as
PENDINGin an append-only SQLite audit trail, and a real Slack Block Kit card is posted with Approve / Deny buttons - Real-time unblock — a human clicks in Slack, the click flows through a Bolt Socket Mode receiver, the audit log updates, and the waiting agent resumes (or is denied) within seconds
No agent action executes in the MEDIUM/HIGH path without a human's explicit click. No exceptions, no silent timeouts that default to "allow."
Architecture
sequenceDiagram
autonumber
actor User as Administrateur (Phil)
participant Agent as Agent IA (Mock)
participant Gate as Medusa MCP Gate
participant DB as Base SQLite (Audit Log)
participant Slack as Canal #agent-approvals
Note over Agent, Gate: Étape 1 : Action Bas Risque (LOW)
Agent->>Gate: Appelle l'outil 'reply_thread'
Gate->>Gate: Évaluation : Risque Bas (LOW)
Gate-->>Agent: Statut : AUTO_PASSED (Exécution immédiate)
Note over Agent, Slack: Étape 2 : Action Haut Risque (HIGH)
Agent->>Gate: Appelle l'outil 'post_public_announcement'
Gate->>Gate: Évaluation : Risque Élevé (HIGH)
Gate->>DB: Enregistre la requête (Statut: PENDING)
Gate->>Slack: Envoie la carte interactive (Block Kit)
Note over Agent: L'Agent IA se fige (Polling actif)
Note over Slack, Agent: Étape 3 : Validation Humaine en Temps Réel
User->>Slack: Clique sur le bouton vert [Approve]
Slack->>DB: Le récepteur Bolt met à jour la base (Statut: APPROVED)
DB-->>Gate: Le polling détecte le changement de statut
Gate-->>Agent: Renvoie la décision : APPROVED
Note over Agent: L'Agent IA se débloque et s'exécute !
Gate->>Slack: Met à jour la carte (Affichage: ✅ APPROVED)
Stack: Model Context Protocol (MCP) · Slack Bolt SDK (Socket Mode — no public endpoint required) · Slack Block Kit · SQLite (audit trail)
Live Demo Result
Real end-to-end run, real Slack workspace, real human click:
{
"tool_name": "post_public_announcement",
"decision": "APPROVED",
"risk_level": "HIGH",
"request_id": "c2f5206b1b47",
"executed": true,
"result": "[executed] post_public_announcement with {'public_announcement': True, 'channel': '#general'}"
}
The Slack card updated in place to ✅ APPROVED by @Phil Mach-1 the instant the button was clicked — no polling delay visible to the human approver.
A LOW-risk action in the same run passed through instantly with zero Slack noise:
{
"tool_name": "reply_thread",
"decision": "AUTO_PASSED",
"risk_level": "LOW",
"executed": true
}
Installation
git clone <this-repo>
cd slack_agent
pip install -r requirements.txt
Create a Slack app from the manifest below (Create App → From a manifest):
{
"display_information": {
"name": "Medusa Slack Gate",
"description": "Human approval gate for risky agent actions before execution.",
"background_color": "#050810"
},
"features": {
"bot_user": { "display_name": "Medusa Gatekeeper", "always_online": true }
},
"oauth_config": {
"scopes": { "bot": ["chat:write", "commands"] }
},
"settings": {
"interactivity": { "is_enabled": true },
"org_deploy_enabled": false,
"socket_mode_enabled": true,
"token_rotation_enabled": false
}
}
Generate an App-Level Token (connections:write scope), install the app, invite the bot to your approval channel, then create .env:
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.