Resolve a company domain to its Trustpilot rating, review count and claimed status.
An MCP server that resolves a company domain to its Trustpilot rating, review count and claimed status. It wraps the Mamba Labs Trustpilot Reputation Enricher actor on Apify and returns a Clay-ready flat JSON row to any MCP client.
Give it a company domain and it resolves that company's Trustpilot business unit and returns the TrustScore, review count, star score, the one to five star breakdown, claimed and verified status and categories, through Trustpilot's documented Business Units API. One flat row per company.
This route needs your own Trustpilot API key. Without one every row reports skipped rather than pretending to have looked. The tool keeps four kinds of empty apart: a refused request reports blocked, a domain with no business unit reports not_found, a value nobody could read reports not_extractable, and a source that was never queried reports skipped. G2, Capterra and Glassdoor ship as explicit skipped status columns, so the row shape does not change when a source is added.
All of the lookup runs on Apify. This package is a thin client that calls the actor and hands back the result unchanged.
You need Node.js 18 or newer and an Apify account with an API token.
Add this to your Claude Desktop config:
{
"mcpServers": {
"mamba-review-platform-reputation-enricher": {
"command": "npx",
"args": ["-y", "@mambalabsdev/mcp-review-platform-reputation-enricher"],
"env": {
"APIFY_TOKEN": "your-apify-token"
}
}
}
}
Get your token at https://console.apify.com/account/integrations, paste it in, and restart Claude Desktop. The get_trustpilot_reputation tool will be available.
You also need your own Trustpilot API key, free to create at developers.trustpilot.com. It is passed as a tool argument rather than an environment variable, so the model supplies it per call.
company_domain (optional): bare company domain, for example stripe.com. Trustpilot business units are keyed on the company website domain, so this is the correct and only lookup key.company_name (optional): carried through to the output row for joining. The lookup is keyed on the domain, so the name does not change which business unit is returned.trustpilotApiKey (optional in the schema, required in practice): your own Trustpilot API key, free to create at developers.trustpilot.com. Without a key the tool reports skipped rather than guessing.minReviewCount (optional): one of none, 10, 50, 100 or 500. It sets rating_is_meaningful on the row. A 5.0 rating from two reviews and a 4.2 from nine hundred are not comparable numbers, and this is the column that says which one you are looking at. It never drops a row and never changes the rating returned.includeCategories (optional): when true (the default) the Trustpilot categories the business is listed under are returned. They are a cheap proxy for what a company actually sells, which is often not what its homepage says.sources (optional): which review sources to query. Version 1 serves trustpilot only. G2, Capterra and Glassdoor appear as columns and always report skipped, with the reason on the row. This setting exists so a saved configuration keeps working when a source is added.skipCache (optional): when false (the default) a successful lookup is cached for seven days and reused. Set true to force a fresh fetch.The tool returns the actor's flat JSON row for the company, with 31 snake_case fields and no nested objects. trustpilot_status is the field to read before any rating, trustpilot_route and trustpilot_id_source say how the business unit was resolved, and rating_is_meaningful reflects the review count threshold you set. See the Apify Store page for the full output schema.
{
"degraded": false,
"degradation_reason": null,
"company_domain": "mattressonline.co.uk",
"company_name": "Mattress Online",
"trustpilot_business_id": "4992d8e10000640005041a9a",
"trustpilot_url": "https://www.trustpilot.com/review/www.mattressonline.co.uk",
"trustpilot_name": "MattressOnline.co.uk",
"trustpilot_rating": 4.8,
"trustpilot_review_count": 72332,
"trustpilot_stars": 5,
"trustpilot_one_star": 1618,
"trustpilot_two_stars": 768,
"trustpilot_three_stars": 1485,
"trustpilot_four_stars": 5850,
"trustpilot_five_stars": 62611,
"trustpilot_country_code": "GB",
"trustpilot_route": "widget",
"trustpilot_id_source": "homepage_embed",
"trustpilot_claimed_status": "not_extractable",
"trustpilot_is_claimed": null,
"rating_is_meaningful": true,
"trustpilot_status": "ok",
"g2_status": "skipped",
"capterra_status": "skipped",
"glassdoor_status": "skipped",
"coverage": 1,
"fetch_status": "ok",
"run_date": "2026-08-23T06:39:38.824Z"
}
This 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:
https://apify.com/mambalabs/review-platform-reputation-enricher
This 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 Trustpilot Reputation Enricher, immutable Apify actor ID 3lIqfCt61j4hqE1xz.
Built by Mamba Labs | npm | Apify Store
MIT
Built by Mamba Labs. https://apify.com/mambalabs
Source-derived launch command. Check the maintainer’s required arguments and credentials before running:
npx -y @mambalabsdev/mcp-review-platform-reputation-enricherMerge this template into ~/Library/Application Support/Claude/claude_desktop_config.json. Keep existing servers. Add any arguments, credentials, and permissions required by the maintainer; this template has not been install-tested.
{
"mcpServers": {
"com-mambabuilt-mcp-review-platform-reputation-enricher": {
"command": "npx",
"args": [
"-y",
"@mambalabsdev/mcp-review-platform-reputation-enricher"
]
}
}
}Restart Claude Desktop completely for changes to take effect. Confirm the server appears connected in the client’s tool list, then try a read-only example from its documentation.
Claude Desktop setup reference@mambalabsdev/mcp-review-platform-reputation-enrichernpmcom.mambabuilt/mcp-review-platform-reputation-enricher works with any MCP-compatible client. Copy the config snippet from the Configuration section above and add it to the file shown for your client, then restart the application.
~/Library/Application Support/Claude/claude_desktop_config.jsonRestart Claude Desktop completely for changes to take effect.~/.cursor/mcp.jsonRestart Cursor for changes to take effect..vscode/mcp.jsonReload VS Code window for changes to take effect.~/.codeium/windsurf/mcp_config.jsonRestart Windsurf for changes to take effect..mcp.jsonSave at the project root, then start Claude Code in that project and review the MCP server approval prompt. Keep real credentials out of shared files.