# Agent Rescue Desk — n8n Workflow Production-Readiness Scan

> Agent Rescue Desk — n8n Workflow Production-Readiness Scan is a paid API for AI agents from agent-rescue-desk.netlify.app, paid per call via x402, $10/call, status unknown (last checked 2026-09-14).

Accepts an exported n8n workflow JSON and returns a static production-readiness report flagging critical issues, warnings, and manual review items.

## Facts

- Endpoint: POST https://agent-rescue-desk.netlify.app/api/agent402/n8n-readiness
- Price: $10/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-rescue-desk-n8n-workflow-production-readiness-scan-5cc28f0c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SKYewzGuebB9UrGpL7GER

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability agent-rescue-desk-n8n-workflow-production-readiness-scan-5cc28f0c -d '<json body>'
```

Example prompt: Can you scan this exported n8n workflow JSON for production-readiness issues? I want to know if there are any critical errors, warnings, or nodes that need manual review before I go live.

## When to prefer this

Choose this endpoint when you have an exported n8n workflow JSON and need a fast, bounded static analysis for production-readiness before deployment or after a breakage — without executing the workflow or exposing live credentials. It is purpose-built for n8n specifically and returns structured, actionable findings rather than generic linting. Prefer it over manual review or generic code analysis tools when you want a structured report with severity tiers (critical, warning, review) and a clear next step. Not suitable for live execution testing, credential validation, security audits, or workflows built in other automation platforms.

## Known failure modes

- Workflow JSON is malformed or not a valid n8n export — likely returns an error or incomplete scan
- Input contains sensitive credential values that were not redacted — service processes transiently but user should redact first
- Workflow is too large or exceeds input length constraints — truncation or rejection possible
- Network/payment failure at the x402 layer — $10 USDC payment not processed, request not fulfilled
- Static scan cannot detect runtime or credential-related failures — findings may be incomplete for execution-time issues

## How this service works

Fixed-scope diagnosis and repair for one broken AI agent workflow or MCP integration. $1,000. Decisive outcome in 12 hours.

## Output

A structured JSON report containing: overall status, a version timestamp, counts of nodes inspected, connections inspected, passed checks, critical findings, production warnings, and manual review items; plus categorized findings arrays (critical, warnings, review, passed) each with a code, title, detail, and recommended action; a privacy notice; and a next-step object pointing to the $1,000 full rescue service if needed.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "query": {
   "type": "string",
   "maxLength": 1000000,
   "minLength": 2,
   "description": "One redacted exported n8n workflow encoded as a JSON string. Never include passwords, tokens, private keys, customer data, or live credential values."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "limits": "This is a bounded static scan, not an execution, credential check, security audit, or proof of downstream side effects.",
  "report": "# n8n workflow production-readiness scan\n\n## Summary\n\n- Critical findings: 0",
  "status": "complete",
  "privacy": "The submitted body was processed transiently. It was not stored or echoed in the response.",
  "service": "Agent Rescue Desk n8n Workflow Production Readiness Report",
  "summary": {
   "passedChecks": 6,
   "nodesInspected": 2,
   "criticalFindings": 0,
   "manualReviewItems": 1,
   "productionWarnings": 4,
   "connectionsInspected": 1
  },
  "version": "2026-07-27",
  "findings": {
   "passed": [],
   "review": [],
   "critical": [],
   "warnings": [
    {
     "code": "INACTIVE",
     "title": "Export is marked inactive",
     "action": "Publish or activate the reviewed version, then prove a real trigger execution.",
     "detail": "Production triggers will not run while the deployed workflow is inactive."
    }
   ]
  },
  "nextStep": {
   "rescueUrl": "https://marketplace.agent402.app/agents/6c54e490-72fc-47ba-bad1-3ac47b1b464a",
   "instruction": "Run the published production trigger and verify the final external outcome.",
   "rescuePriceUsd": 1000,
   "rescueServiceWindowHours": 12
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-rescue-desk-n8n-workflow-production-readiness-scan-5cc28f0c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent-rescue-desk.netlify.app](https://www.zero.xyz/host/agent-rescue-desk.netlify.app/llms.txt)
