mirror of
https://github.com/FunnyWolf/agentic-soc-platform.git
synced 2026-08-22 13:12:56 +02:00
6 lines
195 B
Python
6 lines
195 B
Python
from apps.mcp.auth import ApiKeyMCPMiddleware
|
|
from apps.mcp.server import create_mcp_server
|
|
|
|
mcp_server = create_mcp_server()
|
|
mcp_asgi_app = ApiKeyMCPMiddleware(mcp_server.streamable_http_app())
|