from django.urls import path from .views import dashboard, mcp_endpoint, slack_webhook, request_detail urlpatterns = [ path("", dashboard, name="home"), path("mcp/", mcp_endpoint, name="mcp_endpoint"), path("webhook/slack/", slack_webhook, name="slack_webhook"), path("request//", request_detail, name="request_detail"), ]