Fake Product Review

⚡ Generators 🌭 Mild 3,391 calls

The Fake Product Review API generates one review per call. The star count (1-5) shapes the body and headline — 1 star is unhinged, 3 stars is fine, 5 stars is concerning enthusiasm. Includes a reviewer name, verified-purchase status, helpful votes, and a posting date within the last year.

Add to Your MCP Client

Drop this server into Claude Desktop, Cursor, Continue, or any MCP-compatible client.

{
  "mcpServers": {
    "fake-product-review": {
      "url": "https://api.stupidmcps.com/fake-product-review/mcp"
    }
  }
}
{
  "mcpServers": {
    "fake-product-review": {
      "url": "https://api.stupidmcps.com/fake-product-review/mcp"
    }
  }
}
POST https://api.stupidmcps.com/fake-product-review/mcp

Add the snippet to your client's MCP config (typically claude_desktop_config.json for Claude Desktop, ~/.cursor/mcp.json for Cursor). Restart the client. The tools become available to your AI assistant.

No-code option: connect via Pipeworx — one click into Claude, ChatGPT, and friends.

Or Try It Directly — No MCP Client Required

Fake Product Review.exe
_ ×
Product name.
1-5 (default 3).

Parameters

Parameter Type Required Default Description
product string Required Product name.
stars number Optional 3 1-5 (default 3).

Examples

curl "https://api.stupidapis.com/fake-product-review/review?product=ergonomic+keyboard&stars=1"
import requests

response = requests.get(
    "https://api.stupidapis.com/fake-product-review/review",
    params={"product": "ergonomic keyboard", "stars": 1}
)
print(response.json())
const response = await fetch(
  "https://api.stupidapis.com/fake-product-review/review?product=ergonomic+keyboard&stars=1"
);
const data = await response.json();
console.log(data);

Response Schema

Field Type Description
product string Echoed back
stars number Star rating
headline string Review headline
body string Review body
reviewer string Reviewer name
verified_purchase boolean Verified status
helpful_votes number Helpful vote count
posted string Date posted

Example Response

{
  "product": "ergonomic keyboard",
  "stars": 1,
  "headline": "Disappointing",
  "body": "Crashed once in 2019. My grandmother died the next year. Coincidence?",
  "reviewer": "A Verified Customer",
  "verified_purchase": true,
  "helpful_votes": 47,
  "posted": "2026-02-14"
}

MCP Access

This API is available as an MCP tool for AI assistants. Connect your agent to:

POST https://api.stupidmcps.com/fake-product-review/mcp
POST https://api.stupidmcps.com/mcp

Use Pipeworx to connect this MCP tool to Claude, ChatGPT, and other AI assistants with no code.

...
Clippy