sitemap_stats
Pack: sitemap-stats · Endpoint: https://gateway.pipeworx.io/sitemap-stats/mcp
Fetch a domain’s sitemap(s) and report their STRUCTURE — URL counts by path prefix — not their content. This is the fingerprint that separates a normal site from a programmatic content farm: a farm concentrates a huge majority of its URLs under one or two path prefixes (e.g. /best/
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
domain | string | yes | Domain or URL to inspect, e.g. “example.com” or “https://example.com” |
max_urls | number | no | Cap on total URLs read across all sitemap files (default ${DEFAULT_MAX_URLS}, hard ceiling ${ABSOLUTE_MAX_URLS}) |
Example call
Arguments
{
"domain": "gitnux.org"
}
curl
curl -X POST https://gateway.pipeworx.io/sitemap-stats/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"sitemap_stats","arguments":{"domain":"gitnux.org"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('sitemap_stats', {
"domain": "gitnux.org"
});
More examples
{
"domain": "pipeworx.io"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"sitemap-stats": {
"url": "https://gateway.pipeworx.io/sitemap-stats/mcp"
}
}
}
See Getting Started for client-specific install steps.