Fake Warning Label
The Fake Warning Label API returns one warning label per call. Includes header (WARNING/CAUTION/etc.), symbol, the warning itself ("May contain trace amounts of regret"), three precautions, jurisdiction note, and certification.
Add to Your MCP Client
Drop this server into Claude Desktop, Cursor, Continue, or any MCP-compatible client.
{
"mcpServers": {
"fake-warning-label": {
"url": "https://api.stupidmcps.com/fake-warning-label/mcp"
}
}
}
{
"mcpServers": {
"fake-warning-label": {
"url": "https://api.stupidmcps.com/fake-warning-label/mcp"
}
}
}
POST https://api.stupidmcps.com/fake-warning-label/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
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
object |
string |
Required | — | The object being labeled. |
Examples
curl "https://api.stupidapis.com/fake-warning-label/label?object=ceiling+fan"
import requests
response = requests.get("https://api.stupidapis.com/fake-warning-label/label", params={"object": "ceiling fan"})
print(response.json())
const response = await fetch("https://api.stupidapis.com/fake-warning-label/label?object=ceiling+fan");
const data = await response.json();
Response Schema
| Field | Type | Description |
|---|---|---|
object |
string |
Echoed back |
symbol |
string |
Warning symbol |
header |
string |
Header text |
warning |
string |
The warning |
precautions |
string[] |
Three precautions |
jurisdiction |
string |
Where it applies |
certification |
string |
Certification |
Example Response
{
"object": "ceiling fan",
"symbol": "⚠",
"header": "WARNING",
"warning": "Do not dream within 4 feet of this device.",
"precautions": [
"wear protective eyewear",
"keep away from children, pets, and electricians",
"consult a professional, but not the kind that would help"
],
"jurisdiction": "Permitted in 47 of 50 states",
"certification": "Self-certified"
}
MCP Access
This API is available as an MCP tool for AI assistants. Connect your agent to:
POST https://api.stupidmcps.com/fake-warning-label/mcp
POST https://api.stupidmcps.com/mcp
Use Pipeworx to connect this MCP tool to Claude, ChatGPT, and other AI assistants with no code.