{
  "markdown": "# Website Traffic Rank Estimator MCP Server\n\n[![Smithery](https://smithery.ai/badge/mambabuilt/mcp-website-traffic-rank-estimator)](https://smithery.ai/servers/mambabuilt/mcp-website-traffic-rank-estimator) [![Glama score](https://glama.ai/mcp/servers/mambalabsdev/mcp-website-traffic-rank-estimator/badges/score.svg)](https://glama.ai/mcp/servers/mambalabsdev/mcp-website-traffic-rank-estimator) [![MCP Registry](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fregistry.modelcontextprotocol.io%2Fv0%2Fservers%3Fsearch%3Dcom.mambabuilt%252Fmcp-website-traffic-rank-estimator%26limit%3D1&query=%24.servers%5B0%5D._meta%5B%22io.modelcontextprotocol.registry%2Fofficial%22%5D.status&label=mcp%20registry&color=blue)](https://registry.modelcontextprotocol.io/v0/servers?search=com.mambabuilt/mcp-website-traffic-rank-estimator&limit=1) [![npm version](https://img.shields.io/npm/v/@mambalabsdev/mcp-website-traffic-rank-estimator)](https://www.npmjs.com/package/@mambalabsdev/mcp-website-traffic-rank-estimator) [![npm downloads](https://img.shields.io/npm/dm/@mambalabsdev/mcp-website-traffic-rank-estimator)](https://www.npmjs.com/package/@mambalabsdev/mcp-website-traffic-rank-estimator) [![license](https://img.shields.io/github/license/mambalabsdev/mcp-website-traffic-rank-estimator)](https://github.com/mambalabsdev/mcp-website-traffic-rank-estimator/blob/main/LICENSE) [![mcpservers.org](https://img.shields.io/badge/mcpservers.org-listed-blue)](https://mcpservers.org/servers/mambalabsdev/mcp-website-traffic-rank-estimator)\n\nAn MCP server that returns a research grade Tranco popularity rank and trend for any company domain. It wraps the Mamba Labs Website Traffic Rank Estimator actor on Apify and returns a Clay-ready flat JSON row to any MCP client.\n\n## What's Inside\n\n- [What it does](#what-it-does)\n- [Quick start](#quick-start)\n- [Prerequisites](#prerequisites)\n- [Example prompts](#example-prompts)\n- [Inputs](#inputs)\n- [Output](#output)\n- [Example output](#example-output)\n- [Features](#features)\n- [Full actor documentation](#full-actor-documentation)\n- [Mamba Labs GTM Suite](#mamba-labs-gtm-suite)\n- [License](#license)\n\n## What it does\n\nGive it a company domain and it returns that domain's position on the public Tranco list, the date of that position, a band from `top_1k` through `beyond_1m`, and whether the domain has been rising, falling or stable over roughly forty daily observations. One flat row per company.\n\nThese are ranks, not traffic. A Tranco rank does not convert to visits, sessions or a monthly number, and this tool will never return a visit count. A lower rank number is better, so the trend is given in words rather than as a signed number. Most B2B domains are not on the list at all and return `not_found`, which is normal rather than disqualifying. Cloudflare Radar and Chrome UX Report are available as extra sources with your own free keys, and a source you did not supply a key for reports `skipped` rather than `not_found`, because nobody looked.\n\nAll of the lookup runs on Apify. This package is a thin client that calls the actor and hands back the result unchanged.\n\n## Quick start\n\nYou need Node.js 18 or newer and an Apify account with an API token.\n\nAdd this to your Claude Desktop config:\n\n```json\n{\n  \"mcpServers\": {\n    \"mamba-website-traffic-rank-estimator\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"@mambalabsdev/mcp-website-traffic-rank-estimator\"],\n      \"env\": {\n        \"APIFY_TOKEN\": \"your-apify-token\"\n      }\n    }\n  }\n}\n```\n\nGet your token at https://console.apify.com/account/integrations, paste it in, and restart Claude Desktop. The `estimate_website_traffic_rank` tool will be available.\n\n## Prerequisites\n\n- Node.js 18 or newer\n- An Apify account with an API token\n- Optional: your own Cloudflare API token, free at dash.cloudflare.com, if you want the Radar source\n- Optional: your own Google API key with the Chrome UX Report API enabled, free at console.cloud.google.com, if you want the CrUX source\n\n## Example prompts\n\n- \"What is the Tranco rank for stripe.com, and is it rising or falling?\"\n- \"Give me the popularity band for this domain and skip the trend.\"\n- \"Rank these domains and flag the ones inside the top 100,000.\"\n- \"Look up figma.com on Tranco and Cloudflare Radar. Here is my Cloudflare token.\"\n\n## Inputs\n\n- `company_domain` (optional): bare company domain, for example `stripe.com`. This is the lookup key and the join key for every other actor in the fleet.\n- `company_name` (optional): carried through to the output row for joining. Rank lookup is keyed on the domain alone, so the name does not change the answer.\n- `sources` (optional): which rank sources to query. One of `tranco`, `tranco_radar`, `tranco_crux` or `all`. Tranco is free and needs no key. Cloudflare Radar and Chrome UX Report each need your own free key, and a source you did not supply a key for reports `skipped` rather than `not found`.\n- `includeTrend` (optional): when true (the default) the rank history Tranco already returns is used to say whether the domain is rising, falling or stable. It costs nothing extra, because the history arrives in the same response.\n- `minRank` (optional): one of `none`, `1000`, `10000`, `100000` or `1000000`. It sets `rank_meets_threshold` on the row, so you can filter a list to established sites without writing the comparison yourself. It never drops a row and never changes the rank returned.\n- `cloudflareApiToken` (optional): your own Cloudflare API token, free to create at dash.cloudflare.com. Used only when `sources` includes Radar.\n- `cruxApiKey` (optional): your own Google API key with the Chrome UX Report API enabled, free at console.cloud.google.com. Used only when `sources` includes CrUX.\n- `skipCache` (optional): when false (the default) a successful lookup is cached for seven days and reused. Set true to force a fresh fetch.\n\n## Output\n\nThe tool returns the actor's flat JSON row for the company, with 20 snake_case fields and no nested objects. `tranco_rank` comes with `tranco_rank_date`, because a rank without a date has no shelf life. `rank_band` gives an honest band rather than false precision, `rank_trend` is a word, and `radar_status` and `crux_status` say whether those sources ran. See the Apify Store page for the full output schema.\n\n## Example output\n\n```json\n{\n  \"degraded\": false,\n  \"degradation_reason\": null,\n  \"company_domain\": \"stripe.com\",\n  \"company_name\": \"Stripe\",\n  \"tranco_rank\": 238,\n  \"tranco_rank_date\": \"2026-08-21\",\n  \"rank_band\": \"top_1k\",\n  \"rank_trend\": \"stable\",\n  \"rank_change\": 1,\n  \"rank_observations\": 40,\n  \"rank_meets_threshold\": null,\n  \"radar_rank\": null,\n  \"radar_bucket\": null,\n  \"radar_status\": \"skipped\",\n  \"crux_has_data\": null,\n  \"crux_lcp_p75_ms\": null,\n  \"crux_status\": \"skipped\",\n  \"coverage\": 0.67,\n  \"fetch_status\": \"ok\",\n  \"run_date\": \"2026-08-22T19:23:52.998Z\"\n}\n```\n\n## Features\n\n- Tranco popularity rank for any company domain, with the date of that rank\n- Trend over roughly forty daily observations, given as rising, falling or stable\n- An honest band such as `top_1k`, rather than false precision\n- Optional Cloudflare Radar and Chrome UX Report sources with your own keys\n- Never returns a visit count, because a rank is not traffic\n- 20 flat snake_case fields, one row per company\n\n## Full actor documentation\n\nThis server is a thin client and holds no lookup logic. For the complete input and output reference, pricing, and run history, see the Apify Store page:\n\nhttps://apify.com/mambalabs/website-traffic-rank-estimator\n\n---\n\n## Mamba Labs GTM Suite\n\nThis server is one of the Mamba Labs GTM Suite MCP servers. Every actor in the suite takes a domain or a company and returns one flat row, so they stack in the same Clay table without reshaping anything. The actor behind this server is the Website Traffic Rank Estimator, immutable Apify actor ID `GnOFUzlNVIoXgeJjH`.\n\n> Built by [Mamba Labs](https://github.com/mambalabsdev) | [npm](https://www.npmjs.com/org/mambalabsdev) | [Apify Store](https://apify.com/mambalabs)\n\n## License\n\nMIT\n\nBuilt by Mamba Labs. https://apify.com/mambalabs\n",
  "bytes": 8103,
  "sha": "9f166835cc2a20899b2a0fa7a9273fb34ea1710a1cbebb27404e8cc8aca381fe",
  "repo_slug": "mambalabsdev/mcp-website-traffic-rank-estimator",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/mcp_com_mambabuilt_mcp_website_traffic_rank__3548e1b1/readme"
}