Fake Restaurant Menu
The Fake Restaurant Menu API generates a complete menu per call. Restaurant name ("Threshold"), cuisine ("Locally Foraged"), three starters with prices ("Single radish, salted, served on a board, $26"), four mains, two desserts, a footnote ("A still water service charge of $9 applies"), and a reservation window. Six to eight weeks.
Add to Your MCP Client
Drop this server into Claude Desktop, Cursor, Continue, or any MCP-compatible client.
{
"mcpServers": {
"fake-restaurant-menu": {
"url": "https://api.stupidmcps.com/fake-restaurant-menu/mcp"
}
}
}
{
"mcpServers": {
"fake-restaurant-menu": {
"url": "https://api.stupidmcps.com/fake-restaurant-menu/mcp"
}
}
}
POST https://api.stupidmcps.com/fake-restaurant-menu/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 |
|---|
Examples
curl "https://api.stupidapis.com/fake-restaurant-menu/generate"
import requests
response = requests.get("https://api.stupidapis.com/fake-restaurant-menu/generate")
print(response.json())
const response = await fetch("https://api.stupidapis.com/fake-restaurant-menu/generate");
const data = await response.json();
console.log(data);
Response Schema
| Field | Type | Description |
|---|---|---|
restaurant |
string |
Name of the restaurant |
cuisine |
string |
Cuisine type |
starters |
object[] |
Three starters with prices |
mains |
object[] |
Four mains with prices |
desserts |
object[] |
Two desserts with prices |
footnote |
string |
Menu footnote |
reservation_window |
string |
How far out to book |
Example Response
{
"restaurant": "Tare",
"cuisine": "Hand-Restrained",
"starters": [
{
"name": "Deconstructed water, foraged ice",
"price": 32
},
{
"name": "Pickled onion, three ways, one onion",
"price": 28
},
{
"name": "House sourdough, arrived",
"price": 24
}
],
"mains": [
{
"name": "Beet, prepared from belief",
"price": 56
},
{
"name": "Cauliflower, painted",
"price": 48
},
{
"name": "Pasta, hand-cut by Lawrence",
"price": 62
},
{
"name": "Grilled trout with whatever the kitchen has decided",
"price": 71
}
],
"desserts": [
{
"name": "Olive oil cake, a small one",
"price": 22
},
{
"name": "Honeycomb on a saucer",
"price": 26
}
],
"footnote": "The kitchen prefers our 12-course tasting; please ask",
"reservation_window": "six to eight weeks"
}
MCP Access
This API is available as an MCP tool for AI assistants. Connect your agent to:
POST https://api.stupidmcps.com/fake-restaurant-menu/mcp
POST https://api.stupidmcps.com/mcp
Use Pipeworx to connect this MCP tool to Claude, ChatGPT, and other AI assistants with no code.