---
title: Pricing — Agent Ready
description: Agent Ready pricing — Free ($0/month) and Pro ($19/month) plans for AI agent readability checking. Pro unlocks deeper scans, history, monitoring, REST API, MCP server, and GitHub Action access.
last_updated: 2026-05-28
canonical_url: https://agent-ready.dev/pricing
---

# Pricing — Agent Ready

> Agent Ready offers two plans for AI agent-readiness checking. **Free** ($0/month) covers ad-hoc scans for individuals; **Pro** ($19/month) unlocks deeper scans, scan history, the REST API, the MCP server, the CLI, and the GitHub Action for CI/CD gating. All prices in USD, billed via Stripe. Cancel anytime.

## Free — $0/month

- **Price:** $0/month
- **Pages per scan:** 25
- **Scans per 30 days:** 10 (signed-in), 3 per IP (anonymous)
- **Scan history:** Not retained
- **Monitoring:** Manual scans only
- **API access:** None
- **MCP server access:** None
- **GitHub Action:** Not available
- **Shareable result URLs:** Yes
- **SVG badge embed:** Yes
- **Sign-up required:** No (anonymous scans run at the lower per-IP rate)

## Pro — $19/month

- **Price:** $19/month, billed in USD via Stripe
- **Pages per scan:** 250
- **Scans per month:** 50
- **Scan history:** 90 days
- **Monitoring:** Weekly automated re-scans with email alerts on score regression (5+ point drop)
- **API access:** REST API v1 (Bearer token issued from `/dashboard/api-keys`)
- **REST API rate limits:** 10 requests/minute, 200 requests/day, sliding window
- **MCP server access:** Yes (`POST /api/v1/mcp`, same Bearer token)
- **CLI:** Yes (`agent-ready-scanner` on npm wraps the REST API — `agent-ready scan <url>`)
- **GitHub Action:** Yes (`uses: mlava/agent-ready@v1` — PR-level CI/CD gating)
- **Shareable result URLs:** Yes
- **SVG badge embed:** Yes

## Plan comparison

| Feature | Free | Pro |
| --- | --- | --- |
| Price (USD) | $0 / month | $19 / month |
| Pages per scan | 25 | 250 |
| Scans (signed in) | 10 / 30 days | 50 / month |
| Scans (anonymous, per IP) | 3 / 30 days | n/a |
| Scan history | None | 90 days |
| Weekly monitoring | No | Yes |
| Email alerts on regression | No | Yes (5+ point drop) |
| REST API access | No | Yes |
| REST API rate limits | n/a | 10 / min, 200 / day |
| MCP server access | No | Yes |
| CLI (npm) | No | Yes |
| GitHub Action | No | Yes |
| Shareable result URLs | Yes | Yes |
| SVG badge embed | Yes | Yes |
| Support | Community | Email |

## Rate limits

Pro REST API requests are rate-limited on a sliding window:

- **Per minute:** 10 requests
- **Per day:** 200 requests

When you exceed a limit the API returns HTTP `429 Too Many Requests` with a `Retry-After` header and a JSON error body. The same limits apply to the MCP endpoint (`POST /api/v1/mcp`) since it shares the underlying request counter. Free-tier users do not have API or MCP access.

## API and MCP access

Pro unlocks programmatic access to every Agent Ready capability:

- **REST API base URL:** `https://agent-ready.dev/api/v1`
- **Auth:** `Authorization: Bearer <key>` (keys issued from `/dashboard/api-keys`)
- **Start a scan:** `POST /api/v1/scans` with JSON body `{"url": "https://example.com"}`
- **Get scan results:** `GET /api/v1/scans/{id}`
- **Ask Agent Ready content:** `POST /api/v1/ask` (NLWeb-compatible search over the published docs)
- **MCP endpoint:** `POST /api/v1/mcp` — same Bearer token, exposes `scan_site`, `get_scan`, `ask`
- **OpenAPI 3.1 spec:** <https://agent-ready.dev/api/v1/openapi.json>
- **MCP server card:** <https://agent-ready.dev/.well-known/mcp/server-card.json>

The GitHub Action wraps the same REST API: it runs a scan on every PR, compares the score against the previous commit on the base branch, and fails the workflow if the score drops or any critical check regresses. See <https://github.com/mlava/agent-ready> for usage.

## Frequently asked questions

### Is there a free trial of Pro?

There is no time-limited trial. The Free tier is the trial — run unlimited scans against a single site, see the full check breakdown for the first 25 pages, share the result URL. Upgrade when you need deeper scans, history, monitoring, or programmatic access.

### Can I cancel Pro at any time?

Yes. Cancel from the Stripe billing portal linked from your dashboard. You keep Pro features until the end of the current billing period; no pro-rated refund. After cancellation your account reverts to Free.

### Do you offer team or organisation pricing?

A dedicated Team tier (unlimited scans, daily monitoring, shared dashboard, seats) is on the roadmap but not yet available. For now, share an API key within a small team if your scan volume fits inside the Pro rate limits. If you need higher limits or seat-based billing, email <hello@agent-ready.dev>.

### Do you offer discounts for open-source or non-profit projects?

Yes — email <hello@agent-ready.dev> with a link to your project. Open-source maintainers, registered non-profits, and academic researchers can request a complimentary Pro upgrade.

### Are scan results private?

Anyone with the share URL can view a scan result. URLs include a high-entropy share token, so they are not enumerable, but they are not authenticated. Treat them like Google Docs "anyone with the link" — fine for results you would post in a public Slack, but don't share them via channels that could leak the token to attackers if the site under scan is sensitive.

## Links

- Pricing (HTML): <https://agent-ready.dev/pricing>
- API reference: <https://agent-ready.dev/docs/api/reference>
- OpenAPI 3.1 spec: <https://agent-ready.dev/api/v1/openapi.json>
- MCP server: <https://agent-ready.dev/api/v1/mcp>
- MCP server card: <https://agent-ready.dev/.well-known/mcp/server-card.json>
- OAuth protected resource: <https://agent-ready.dev/.well-known/oauth-protected-resource>

## Sitemap

See the full [sitemap](https://agent-ready.dev/sitemap.md) for all pages on agent-ready.dev.
