streamable-httpupdated 25d ago
A failed machine action happened. What should happen next?
What can you do with RECOVER — Safe Next Step Decisions After Machine Failures?
RECOVER
A failed machine action happened. What should happen next?
RECOVER is a tiny deterministic decision API for AI agents, MCP clients, automations, and ordinary backend systems. It converts failure context into one of six actions:
RETRY_NOW · WAIT · REPAIR_REQUEST · VERIFY_FIRST · ESCALATE · ABORT
Use it immediately after a failed API/tool/action and before an automatic retry—especially for side-effecting operations, ambiguous timeouts, rate limits, malformed requests, exhausted retry budgets, and uncertain execution outcomes.
Live production
Base URL: https://recover-api-production-bbba.up.railway.app
MCP Streamable HTTP endpoint: https://recover-api-production-bbba.up.railway.app/mcp
Activity dashboard: https://recover-api-production-bbba.up.railway.app/activity
Safe demo: https://recover-api-production-bbba.up.railway.app/demo
REST
POST https://recover-api-production-bbba.up.railway.app/v1/recover
{
"method":"POST",
"status":503,
"error":"upstream timeout",
"attempt":1,
"sideEffect":true,
"idempotencyKey":false
}
Example response:
{
"decision":"VERIFY_FIRST",
"retry":false,
"risk":"high",
"reason":"A side-effecting non-idempotent action may have completed before the failure became visible.",
"next":"Verify external state or obtain an idempotency key before retrying."
}
MCP
Tool: recover_decide
Point an MCP client at:
https://recover-api-production-bbba.up.railway.app/mcp
The server is designed for machine discovery and includes server.json metadata for the official MCP Registry.
Why call RECOVER?
Retry libraries answer how to retry. RECOVER answers the more important question first: what is the safest next action after this specific failure?
Good call sites include API clients, AI agents, browser automations, workflow engines, MCP hosts, job runners, payment/order flows, and any system where blindly retrying can duplicate a side effect or amplify a failure.
Analytics
GET /activity displays durable, privacy-safe usage telemetry and a permanent FIRST 10 REAL-WORLD STRANGER CONVERSIONS scoreboard. Real-use events are stored separately so discovery traffic cannot push milestones out of history. Raw IPs and request payloads are not stored.
Deploy
The repo is Railway-ready with Dockerfile and railway.toml. Mount a persistent volume at /data so the permanent real-use ledger survives restarts.
Install
Add RECOVER — Safe Next Step Decisions After Machine Failures to your client. Pick the one you use.
claude mcp add --transport http recover-safe-next-step-decisions-after-m https://recover-api-production-bbba.up.railway.app/mcpcodex mcp add recover-safe-next-step-decisions-after-m --url https://recover-api-production-bbba.up.railway.app/mcp{
"mcpServers": {
"recover-safe-next-step-decisions-after-m": {
"url": "https://recover-api-production-bbba.up.railway.app/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"recover-safe-next-step-decisions-after-m": {
"type": "http",
"url": "https://recover-api-production-bbba.up.railway.app/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"recover-safe-next-step-decisions-after-m": {
"url": "https://recover-api-production-bbba.up.railway.app/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"recover-safe-next-step-decisions-after-m": {
"serverUrl": "https://recover-api-production-bbba.up.railway.app/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
Score
39 / 100
Incomplete
- Documentation13/25
- Maintenance19/25
- Trust6/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 17 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 0.1.2Latest | Aug 12, 2026 |