radar_domain_rank
Pack: cloudflare-radar · Endpoint: https://gateway.pipeworx.io/cloudflare-radar/mcp
Is this domain widely visited, or nowhere? Returns a single domain’s Cloudflare Radar popularity: an exact rank for domains inside the global top 100, otherwise only a bucket (e.g. “200” = top 200, “100000” = top 100k) — rank is null for everything outside the top 100, so do not build logic on it populating. Below Radar’s tracked ceiling (bucket “>200000”) there is NO signal at all: Radar does not verify domain existence, so a real-but-obscure site and a domain that has never existed come back identically. Read ranked and interpretation, not just bucket, to tell those apart.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
domain | string | yes | Domain to look up, e.g. “reddit.com” (no scheme/path). |
date | string | no | ISO date (YYYY-MM-DD) for a historical ranking snapshot. Omit for the latest. |
Example call
Arguments
{
"domain": "reddit.com"
}
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_domain_rank","arguments":{"domain":"reddit.com"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('radar_domain_rank', {
"domain": "reddit.com"
});
More examples
{
"domain": "pipeworx.io"
}
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.