# agentutility — paid x402 endpoints for autonomous agents

> agentutility — paid x402 endpoints for autonomous agents is a paid API for AI agents from x402.agentutility.ai, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-15).

## Facts

- Endpoint: POST https://x402.agentutility.ai/mcp-server-safety-report
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mcp-server-safety-report-853605ae
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1ElaEYLMPnvi4r9fMTwU0

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 mcp-server-safety-report-853605ae -d '<json body>'
```

## How this service works

Paid x402 endpoints organized into product clusters. USDC-settled on Base. MCP-callable. ERC-8004 identity registry agentId 47167.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "required": [],
     "properties": {
      "repo": {
       "type": "string",
       "description": "Optional GitHub repo in 'owner/name' format hosting the MCP server's source. When given, also runs a prompt-injection and secrets-exposure scan of the repo."
      },
      "context": {
       "type": "string",
       "description": "Optional deployment context for the risk scorer, e.g. 'runs with full filesystem access in CI'. Max 500 chars."
      },
      "manifest": {
       "type": "array",
       "description": "A tool manifest already in hand: an array of MCP tool definitions ({name, description, inputSchema}). Provide exactly one of server_url or manifest. Max 50 entries."
      },
      "server_url": {
       "type": "string",
       "description": "Live MCP server JSON-RPC endpoint to discover tools from. Provide exactly one of server_url or manifest."
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "risk": {
       "type": "object",
       "properties": {
        "tools": {
         "type": "array",
         "items": {
          "type": "object",
          "properties": {
           "name": {
            "type": "string"
           },
           "reasons": {
            "type": "array",
            "items": {
             "type": "string"
            }
           },
           "overall_score": {
            "type": "integer"
           }
          }
         }
        },
        "summary": {
         "type": "string"
        },
        "heuristic": {
         "type": "boolean"
        },
        "overall_score": {
         "type": "integer"
        }
       }
      },
      "source": {
       "type": "string"
      },
      "skipped": {
       "type": "array",
       "items": {
        "type": "string"
      
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "risk": {
   "tools": [
    {
     "name": "read_file",
     "reasons": [
      "read-only"
     ],
     "overall_score": 25
    }
   ],
   "summary": "Low risk, read-only tool.",
   "heuristic": true,
   "overall_score": 25
  },
  "source": "manifest",
  "skipped": [
   "prompt-injection-surface",
   "secrets-exposure-check"
  ],
  "degraded": true,
  "components": [
   {
    "ms": 900,
    "ok": true,
    "name": "mcp-tool-risk-score"
   }
  ],
  "server_url": null,
  "tool_count": 1,
  "composed_of": [
   "mcp-tools-list",
   "mcp-tool-risk-score",
   "prompt-injection-surface",
   "secrets-exposure-check"
  ],
  "secrets_exposure": null,
  "injection_surface": null
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mcp-server-safety-report-853605ae/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.agentutility.ai](https://www.zero.xyz/host/x402.agentutility.ai/llms.txt)
