radar_top_domains
Pack: cloudflare-radar · Endpoint: https://gateway.pipeworx.io/cloudflare-radar/mcp
The most-visited domains on the internet, globally or filtered to one country. Use to see what dominates traffic, or as the reference list to compare a rank against.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
limit | number | no | 1-100 (default 20) |
location | string | no | 2-letter location code (e.g., “US”, “DE”, “JP”). Omit for global. |
date | string | no | ISO date (YYYY-MM-DD) for a historical top-list. Omit for the latest. |
Example call
Arguments
{
"limit": 20
}
curl
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":"radar_top_domains","arguments":{"limit":20}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('radar_top_domains', {
"limit": 20
});
More examples
{
"limit": 10,
"location": "US"
}
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.