feat(mcp): middleware ASGI Bearer token pour /mcp*

This commit is contained in:
2026-05-25 22:47:24 +02:00
parent 6ff7c2f74e
commit cc8fc5ba3f
+26
View File
@@ -0,0 +1,26 @@
import json
from starlette.types import ASGIApp, Receive, Scope, Send
from app.core.config import settings
class MCPAuthMiddleware:
def __init__(self, app: ASGIApp) -> None:
self.app = app
async def __call__(self, scope: Scope, receive: Receive, send: Send) -> None:
if scope["type"] == "http" and scope.get("path", "").startswith("/mcp"):
headers = dict(scope.get("headers", []))
auth = headers.get(b"authorization", b"").decode()
if auth != f"Bearer {settings.mcp_api_key}":
body = json.dumps({"detail": "Unauthorized"}).encode()
await send({
"type": "http.response.start",
"status": 401,
"headers": [
(b"content-type", b"application/json"),
(b"content-length", str(len(body)).encode()),
],
})
await send({"type": "http.response.body", "body": body})
return
await self.app(scope, receive, send)