{% extends "base.html" %}
{% load static %}
{% block title %}Dashboard | MCP Slack Bridge{% endblock %}
{% block content %}
Bridging the gap between autonomous AI agents and human workers.
Exposing tools to request design, feedback, or any manual task directly via Slack.
Post JSON-RPC hereAI &Human Slack Bridge
MCP Endpoint
/mcp/
Set SLACK_BOT_TOKEN in your environment to enable message delivery.
| TIMESTAMP | TOOL NAME | CHANNEL | STATUS | ACTION |
|---|---|---|---|---|
| {{ r.created_at|date:"Y-m-d H:i" }} | {{ r.tool_name }} |
#{{ r.slack_channel }} | {% if r.status == 'SENT' %} SENT {% elif r.status == 'ERROR' %} ERROR {% else %} PENDING {% endif %} | Details |
| No activity logged yet. Connect an MCP client to start. | ||||
{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "send_slack_message",
"arguments": {
"channel": "C12345",
"text": "Hello Human!"
}
},
"id": 1
}