# AIScan MCP Readiness Score

> AIScan MCP Readiness Score is a paid API for AI agents from api.getaiscan.app, paid per call via x402, $0.2/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/score_mcp
- Price: $0.2/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-score-8c02710c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pJF-EPPME_CW9b7g7aDrL

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-score-8c02710c -d '<json body>'
```

Example prompt: Can you check how MCP-ready my website is? Run an AIScan MCP readiness audit on https://mycompany.com and tell me the score.

## When to prefer this

Use this endpoint when you specifically need to evaluate a website's MCP (Model Context Protocol) readiness — i.e., how well it is set up to be discovered and used by AI agents via MCP standards. It is distinct from the broader AEO/GEO/Agent Readiness scores offered by sibling endpoints on the same platform. Choose this when the user explicitly wants to know about MCP compliance or agent-protocol-level discoverability rather than general AI search visibility.

## Known failure modes

- Invalid or unreachable URL returns an error
- Missing required 'url' field causes validation failure
- Payment not settled results in 402 response before audit runs
- Timeout if target site is too slow 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 name that was executed, the analyzed site URL, and payment settlement info. The MCP readiness score for the given website is the core output — indicating how well the site supports Model Context Protocol standards for AI agent discoverability.

## 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-score-8c02710c/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)
