{% extends "base.html" %} {% load static %} {% block title %}Dashboard | MCP Slack Bridge{% endblock %} {% block content %}

AI &Human Slack Bridge

Bridging the gap between autonomous AI agents and human workers. Exposing tools to request design, feedback, or any manual task directly via Slack.

Server: {{ server_status }} DJANGO 5.2 • MCP v1.0
MCP Endpoint
/mcp/

Post JSON-RPC here

{% if not is_slack_configured %}
Configuration Required

Set SLACK_BOT_TOKEN in your environment to enable message delivery.

{% endif %}
Recent Tool Activity
Showing last 20 requests
{% for r in requests %} {% empty %} {% endfor %}
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.
How to use (Tools/Call)
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "params": {
    "name": "send_slack_message",
    "arguments": {
      "channel": "C12345",
      "text": "Hello Human!"
    }
  },
  "id": 1
}
MCP Server Info
  • Status: ONLINE
  • Version: 1.0.0
  • Available Tools: 2
  • Python: {{ python_version|default:"3.11" }}
{% endblock %}