Emotional Support Rock
The Emotional Support Rock API recreates the experience of telling your problem to a rock. The rock returns its response (mostly silence and grunts), its mood (typically still), its grade (igneous, sedimentary, or metamorphic), and the weight lifted (typically unchanged). The rock will not judge.
Add to Your MCP Client
Drop this server into Claude Desktop, Cursor, Continue, or any MCP-compatible client.
{
"mcpServers": {
"emotional-support-rock": {
"url": "https://api.stupidmcps.com/emotional-support-rock/mcp"
}
}
}
{
"mcpServers": {
"emotional-support-rock": {
"url": "https://api.stupidmcps.com/emotional-support-rock/mcp"
}
}
}
POST https://api.stupidmcps.com/emotional-support-rock/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 |
|---|---|---|---|---|
problem |
string |
Required | — | What is bothering you. The rock will hear it. |
Examples
curl -X POST "https://api.stupidapis.com/emotional-support-rock/support" -H "Content-Type: application/json" -d '{"problem":"i sent the email to the wrong person"}'
import requests
response = requests.post(
"https://api.stupidapis.com/emotional-support-rock/support",
json={"problem": "i sent the email to the wrong person"}
)
print(response.json())
const response = await fetch(
"https://api.stupidapis.com/emotional-support-rock/support",
{ method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ problem: "i sent the email to the wrong person" }) }
);
const data = await response.json();
console.log(data);
Response Schema
| Field | Type | Description |
|---|---|---|
problem |
string |
Your problem, echoed |
rock_says |
string |
The rock's response |
rock_mood |
string |
How the rock is doing today |
rock_grade |
string |
igneous, sedimentary, or metamorphic |
weight_lifted |
string |
Subjective change in burden |
emotional_support_provided |
boolean |
Always true |
rock_will_not_judge |
boolean |
Always true |
Example Response
{
"problem": "i sent the email to the wrong person",
"rock_says": "*the rock has heard worse*",
"rock_mood": "patient",
"rock_grade": "sedimentary",
"weight_lifted": "somewhat lower",
"emotional_support_provided": true,
"rock_will_not_judge": true
}
MCP Access
This API is available as an MCP tool for AI assistants. Connect your agent to:
POST https://api.stupidmcps.com/emotional-support-rock/mcp
POST https://api.stupidmcps.com/mcp
Use Pipeworx to connect this MCP tool to Claude, ChatGPT, and other AI assistants with no code.