bgp_leaks
Pack: cloudflare-radar · Endpoint: https://gateway.pipeworx.io/cloudflare-radar/mcp
Recent BGP route-leak events detected by Cloudflare. Returns leaker AS, victim AS, originated prefixes, start/end times.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
date_range | string | no | Lookback window (default 28d) |
limit | number | no | 1-500 (default 50) |
Example call
curl -X POST https://gateway.pipeworx.io/cloudflare-radar/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"bgp_leaks","arguments":{}}}'
Response shape
Always returns: count, events
| Field | Type | Description |
|---|---|---|
count | number | Total number of BGP leak events |
events | array | List of BGP leak events |
Full JSON Schema
{
"type": "object",
"properties": {
"count": {
"type": "number",
"description": "Total number of BGP leak events"
},
"events": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": [
"number",
"null"
],
"description": "Event identifier"
},
"leaker_asn": {
"type": [
"number",
"null"
],
"description": "AS number of the leaker"
},
"leaker_name": {
"type": [
"string",
"null"
],
"description": "Name of the leaker AS"
},
"origin_asns": {
"type": "array",
"items": {
"type": "number"
},
"description": "ASNs of originated prefixes"
},
"leak_count": {
"type": [
"number",
"null"
],
"description": "Number of leaked prefixes"
},
"started_at": {
"type": [
"string",
"null"
],
"description": "Event start timestamp"
},
"finished_at": {
"type": [
"string",
"null"
],
"description": "Event end timestamp"
},
"ongoing": {
"type": "boolean",
"description": "Whether the leak is still ongoing"
}
}
},
"description": "List of BGP leak events"
}
},
"required": [
"count",
"events"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"cloudflare-radar": {
"url": "https://gateway.pipeworx.io/cloudflare-radar/mcp"
}
}
}
See Getting Started for client-specific install steps.