Cloudflare Radar

live NetworkingSecurity

Internet observatory — traffic mix, attack trends, BGP leaks, Internet Quality Index. Reuses your CF API token.

4 tools
0ms auth
free tier 50 calls/day

Tools

internet_quality

IQI summary (bandwidth, latency, jitter, loss) for a location.

Parameters
Name Type Description
location opt string 2-letter location code (optional)
date_range opt string 1d | 7d | 14d | 28d | 12w | 24w | 52w
Try it
attack_summary

Layer-7 DDoS attack mix.

Parameters
Name Type Description
dimension opt string mitigation_product | http_method | http_version | ip_version | bot_class
location opt string 2-letter code
date_range opt string Lookback window
Try it
top_locations

Top countries by HTTP / DNS / attack share.

Parameters
Name Type Description
metric opt string http_requests | dns_queries | attacks
date_range opt string Lookback
limit opt number 1-100
Try it
bgp_leaks

Recent BGP route-leak events.

Parameters
Name Type Description
date_range opt string Lookback
limit opt number 1-500
Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/cloudflare-radar/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/cloudflare-radar/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"internet_quality","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("internet_quality", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("internet observatory — traffic mix, attack trends, bgp leaks, internet quality index");