# AgentBodega Agent Protocol Checker

> AgentBodega Agent Protocol Checker is a paid API for AI agents from agentbodega.store, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Inspects a given URL to check whether it implements recognized agent protocols (e.g. OpenAPI, MCP card) and returns a scored readiness report

## Facts

- Endpoint: POST https://agentbodega.store/api/check/agent-protocols
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentbodega-agent-protocol-checker-427a22df
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qj3p2nYg2c1hYmGoQxuGe

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 agentbodega-agent-protocol-checker-427a22df -d '<json body>'
```

Example prompt: Can you check whether https://myservice.example.com/api supports standard agent protocols like OpenAPI and MCP, and give me a readiness score?

## When to prefer this

Use this endpoint when you need to programmatically assess whether a web service is ready for AI agent consumption by checking for recognized protocol artifacts (OpenAPI specs, MCP cards, etc.). Prefer it over manual inspection when you need a numeric score and structured pass/fail breakdown across multiple protocol dimensions in one call.

## Known failure modes

- URL is unreachable or returns non-2xx — check may fail or return error status
- URL does not expose any recognized agent protocol artifacts — all checks return neutral or fail, score near 0
- Invalid or malformed URL input — likely returns a validation error
- Timeout if the target URL is slow to respond
- Private or firewall-restricted URLs cannot be fetched from the checker's network

## How this service works

Small x402-payable utility APIs for agents: endpoint inspection, launch checks, and hosted artifacts.

## Output

A JSON object containing an array of named protocol checks (e.g. OpenAPI, MCP card) each with a pass/neutral/fail status, plus a summary object with a numeric readiness score (0–100).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "body": {
     "fields": [
      {
       "name": "url",
       "type": "string",
       "required": true
      },
      {
       "name": "includeEvidence",
       "type": "boolean",
       "required": false
      }
     ],
     "required": [
      "url"
     ],
     "fieldCount": 2,
     "contentType": "application/json",
     "optionalPreview": [
      "includeEvidence"
     ],
     "omittedFieldCount": 0
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json"
     ],
     "type": "string"
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "json"
    },
    "example": {
     "type": "object",
     "additionalProperties": true
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "checks": [
   {
    "name": "OpenAPI",
    "status": "pass"
   },
   {
    "name": "MCP card",
    "status": "neutral"
   }
  ],
  "summary": {
   "score": 82
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentbodega-agent-protocol-checker-427a22df/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentbodega.store](https://www.zero.xyz/host/agentbodega.store/llms.txt)
