# AIScan MCP Readiness Check

> AIScan MCP Readiness Check is a paid API for AI agents from api.getaiscan.app, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-15).

Audits a website's MCP (Model Context Protocol) readiness as part of an AI visibility assessment

## Facts

- Endpoint: POST https://api.getaiscan.app/api/agent/check_mcp
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/aiscan-mcp-readiness-check-da31d64f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_q5yyE5XvYezlz9iQNwWsD

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 aiscan-mcp-readiness-check-da31d64f -d '<json body>'
```

Example prompt: Can you run an MCP readiness check on https://mycompany.com using AIScan and tell me how well my site is set up for AI agents?

## When to prefer this

Use this endpoint when you specifically need to evaluate a website's MCP (Model Context Protocol) readiness, which is a unique score not available from generic SEO or AEO tools. Choose this over broader AI visibility scans when your focus is on whether a site is properly set up to be discovered and used by AI agents via MCP.

## Known failure modes

- Invalid or malformed URL returns an error
- Website is unreachable or returns non-200 status
- Payment of 0.08 USDC not settled via x402 protocol results in 402 response
- Timeout if website takes too long to respond during analysis

## How this service works

AIScan audits any website for AI visibility in 60 seconds. 4 scores: AEO, GEO, Agent Readiness, MCP Readiness. Plus Brand Visibility: how often AI actually names your brand. The only scanner with MCP Readiness.

## Output

Returns the capability that was executed, the analyzed site URL, and payment settlement information. The MCP readiness check specifically evaluates whether the website is properly configured for Model Context Protocol discovery and agent interoperability.

## Example request

```json
{
 "url": "https://example.com"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "url"
 ],
 "properties": {
  "url": {
   "type": "string",
   "description": "Full URL of the website to analyze, e.g. https://example.com"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "capability"
 ],
 "properties": {
  "url": {
   "type": "string",
   "description": "Analyzed site URL"
  },
  "payment": {
   "type": "object",
   "description": "Payment settlement info"
  },
  "capability": {
   "type": "string",
   "description": "Capability that was executed"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/aiscan-mcp-readiness-check-da31d64f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.getaiscan.app](https://www.zero.xyz/host/api.getaiscan.app/llms.txt)
