Files
vm-cloudflare/waf_intel_mcp.py
Vault Sovereign f0b8d962de
Some checks failed
WAF Intelligence Guardrail / waf-intel (push) Waiting to run
Cloudflare Registry Validation / validate-registry (push) Has been cancelled
chore: pre-migration snapshot
Layer0, MCP servers, Terraform consolidation
2025-12-27 01:52:27 +00:00

16 lines
373 B
Python
Executable File

#!/usr/bin/env python3
from __future__ import annotations
"""
WAF Intelligence MCP Server entrypoint.
This wrapper intentionally avoids third-party MCP SDK dependencies and delegates to the
in-repo stdio JSON-RPC implementation at `mcp.waf_intelligence.mcp_server`.
"""
from cloudflare.mcp.waf_intelligence.mcp_server import main
if __name__ == "__main__":
main()