Villain Monologue
The Villain Monologue API delivers one dramatic speech per call. Four styles available: campy (playful menace), gothic (atmospheric and grave), corporate-ceo (the layoff is the speech), and whispered (quiet menace). Includes entrance and exit cues, runtime, and an audience warning.
Add to Your MCP Client
Drop this server into Claude Desktop, Cursor, Continue, or any MCP-compatible client.
{
"mcpServers": {
"villain-monologue": {
"url": "https://api.stupidmcps.com/villain-monologue/mcp"
}
}
}
{
"mcpServers": {
"villain-monologue": {
"url": "https://api.stupidmcps.com/villain-monologue/mcp"
}
}
}
POST https://api.stupidmcps.com/villain-monologue/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 |
|---|---|---|---|---|
style |
string |
Optional | campy |
Monologue style. |
Examples
curl "https://api.stupidapis.com/villain-monologue/deliver?style=corporate-ceo"
import requests
response = requests.get(
"https://api.stupidapis.com/villain-monologue/deliver",
params={"style": "corporate-ceo"}
)
print(response.json())
const response = await fetch( "https://api.stupidapis.com/villain-monologue/deliver?style=corporate-ceo" ); const data = await response.json(); console.log(data);
Response Schema
| Field | Type | Description |
|---|---|---|
monologue |
string |
The speech |
style |
string |
Style used |
entrance |
string |
Stage direction in |
exit |
string |
Stage direction out |
estimated_runtime_seconds |
number |
Runtime |
audience_warning |
string |
Warning to the audience |
Example Response
{
"monologue": "Effective Q3, your role has been eliminated by the Plan. The Plan has been with us all along.",
"style": "corporate-ceo",
"entrance": "a chair turns slowly",
"exit": "fade to black",
"estimated_runtime_seconds": 42,
"audience_warning": "do not interrupt — there is more"
}
MCP Access
This API is available as an MCP tool for AI assistants. Connect your agent to:
POST https://api.stupidmcps.com/villain-monologue/mcp
POST https://api.stupidmcps.com/mcp
Use Pipeworx to connect this MCP tool to Claude, ChatGPT, and other AI assistants with no code.