Agent discovery
MCP endpoint for Agent Site Scan.
Agents can call Agent Site Scan over JSON-RPC to describe the service, run a free Customer Confidence Scan for a public business website, and retrieve stored scan summaries.
Endpoint
https://agentsitescan.com/api/mcp
Discovery
https://agentsitescan.com/.well-known/mcp.json
Protocol
MCP Streamable HTTP JSON-RPC, protocol version 2025-11-25.
Boundary
Public free-result tools only. Paid report contents and checkout actions stay on the site.
Tools
describe_service
Returns product, pricing, discovery, and boundary details without starting a scan.
run_customer_confidence_scan
Runs a free scan for a public website and returns a stored Customer Confidence Score when available.
get_scan_result
Returns the free summary for a stored scan ID without exposing paid report contents.
get_example_report
Returns the real stored example report summary when the evidence-backed example scan is available.
Initialize
curl -sS https://agentsitescan.com/api/mcp \
-H 'content-type: application/json' \
-H 'accept: application/json, text/event-stream' \
-d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2025-11-25","capabilities":{},"clientInfo":{"name":"example-agent","version":"0.1.0"}}}'Run a Scan
curl -sS https://agentsitescan.com/api/mcp \
-H 'content-type: application/json' \
-H 'accept: application/json, text/event-stream' \
-H 'mcp-protocol-version: 2025-11-25' \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"run_customer_confidence_scan","arguments":{"websiteUrl":"https://agentsitescan.com","category":"SaaS","city":"United States"}}}'Human workflow