Crowdsourced life advice — search, browse, or grab a random slip of wisdom from the Advice Slip API
Sometimes you just need a nudge in the right direction. This pack taps the Advice Slip API — a crowd-curated collection of short, practical life advice — and lets you pull random slips, search by topic, or fetch a specific one by ID.
| Tool | What it does |
|---|---|
random_advice | Returns a single random piece of advice |
search_advice | Full-text search across all advice slips by keyword |
get_advice | Retrieve a specific advice slip by its numeric ID |
Searching for advice about sleep:
curl -s -X POST https://gateway.pipeworx.io/advice/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_advice","arguments":{"query":"sleep"}}}'
Response shape:
{
"total_results": 3,
"slips": [
{ "id": 87, "advice": "Get enough sleep." },
{ "id": 143, "advice": "Don't use your phone before bed..." }
]
}
{
"mcpServers": {
"pipeworx-advice": {
"command": "npx",
"args": ["-y", "mcp-remote@latest", "https://gateway.pipeworx.io/advice/mcp"]
}
}
}
random_advice may return the same slip