Compliment Generator
The Compliment Generator API returns one wholesome, specific compliment per call ("Your commit messages have main-character energy"; "You return things to where you found them"). Sincerity is a feature. Each ships with a recommended response, like "sit with this."
Add to Your MCP Client
Drop this server into Claude Desktop, Cursor, Continue, or any MCP-compatible client.
{
"mcpServers": {
"compliment-generator": {
"url": "https://api.stupidmcps.com/compliment-generator/mcp"
}
}
}
{
"mcpServers": {
"compliment-generator": {
"url": "https://api.stupidmcps.com/compliment-generator/mcp"
}
}
}
POST https://api.stupidmcps.com/compliment-generator/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/compliment-generator/generate"
import requests
response = requests.get("https://api.stupidapis.com/compliment-generator/generate")
print(response.json())
const response = await fetch("https://api.stupidapis.com/compliment-generator/generate");
const data = await response.json();
console.log(data);
Response Schema
| Field | Type | Description |
|---|---|---|
compliment |
string |
The compliment |
specificity |
string |
Description of the kind |
is_sincere |
boolean |
Always true |
recommended_response |
string |
How to receive it |
Example Response
{
"compliment": "Your commit messages have main-character energy.",
"specificity": "oddly specific",
"is_sincere": true,
"recommended_response": "sit with this"
}
MCP Access
This API is available as an MCP tool for AI assistants. Connect your agent to:
POST https://api.stupidmcps.com/compliment-generator/mcp
POST https://api.stupidmcps.com/mcp
Use Pipeworx to connect this MCP tool to Claude, ChatGPT, and other AI assistants with no code.