llms.txt Content
# Agentprobe
> Agentic commerce readiness scorer for AI agents.
Agentprobe probes any seller URL to determine whether an AI agent
can discover, quote, and complete a purchase autonomously.
- Product: free probe API
- API: /api/probe?url=<url> or POST /api/probe {"url":"..."}
- MCP: /mcp (JSON-RPC 2.0) — tool: probe_site(url) → full score report
- Badge: /badge.svg?url=<url>
- Leaderboard: /leaderboard (JSON) — last 20 probed sellers with scores
- GitHub Action: unitedideas/agentprobe-check-action@v1 — CI gate for seller readiness
- Health: /health
- Grade tiers: NOT_READY / PARTIAL / AGENT_READY / CERTIFIED
- Probes: llms.txt, OpenAPI, ai-plugin.json, MCP, commerce.json,
catalog API, quote API, checkout API, payment rails, refund/contact
OpenAPI Spec (preview)
openapi: "3.1.0"
info:
title: Agentprobe API
version: "0.1.0"
description: Probe any seller URL for agentic commerce readiness.
servers:
- url: https://agentprobe.fly.dev
paths:
/health:
get:
summary: Health check
responses:
'200':
description: OK
/api/probe:
get:
summary: Probe a URL for agentic readiness
parameters:
- name: url
in: query
required: true
schema: {type: string}
responses: