# the402.ai MCP Server Security Audit Purchase

> the402.ai MCP Server Security Audit Purchase is a paid API for AI agents from api.the402.ai, paid per call via x402, $1.05/call, status down (last checked 2026-09-15).

Initiates a paid security audit of an MCP (Model Context Protocol) server, returning a job ID for tracking the audit result

## Facts

- Endpoint: POST https://api.the402.ai/v1/services/svc_975404aece3a44c5/purchase
- Price: $1.05/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-the402-ai-81c9a534
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_niA1_mQBn4ujffILIm41o

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 api-the402-ai-81c9a534 -d '<json body>'
```

Example prompt: Can you kick off a security audit for my MCP server — the service ID is svc_975404aece3a44c5 — and let me know the job ID so I can track progress?

## When to prefer this

Use this endpoint when you need a professional, automated security audit specifically for an MCP (Model Context Protocol) server and are willing to pay $1.05 USDC per audit. Prefer this over generic code scanners when the target is an MCP server powering AI agent tools, as it is purpose-built for that stack. Choose this when you need a job-based async result you can poll later.

## Known failure modes

- Missing or invalid 'id' field returns a 400 validation error
- Unknown or unauthorized service ID returns 404 or 403
- Payment failure or insufficient USDC balance causes transaction rejection
- Service temporarily unavailable returns 503
- Audit job creation fails internally, returning a 500 error with no job_id

## How this service works

Purchase: MCP Server Security Audit

## Output

Returns a JSON object with a job_id (used to poll for audit results), a status string indicating the current state of the audit job, and a thread_id for tracking the audit conversation or workflow thread.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "id"
 ],
 "properties": {
  "id": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "job_id": {
   "type": "string"
  },
  "status": {
   "type": "string"
  },
  "thread_id": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-the402-ai-81c9a534/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.the402.ai](https://www.zero.xyz/host/api.the402.ai/llms.txt)
