16 lines
373 B
Python
Executable File
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()
|