Agent Readiness Check
peppolvalidator.com
Checked 2026-09-08 06:04 UTC
This site is agent-ready
An agent can reach, read and operate this site. What is left is depth: tools it can call, protocols other systems can discover.
Three fixes worth doing first
Ordered by the points still on the table. Each one comes from a documented check and, where it exists, with the code that fixes it.
01Agentic payment rails
+3 ptsThis is a shop, and no agent-payable rail is advertised.
How to fix it Evaluate x402, the Agentic Commerce Protocol and the Universal Commerce Protocol against your payment provider, then publish the discovery document for whichever you adopt.
02A primary action is discoverable
+2.5 ptsA conversion route exists but no operable control is in the served HTML.
How to fix it Make the main action part of the served HTML: a real form, a search input, or a link to the booking or cart route. A button that only exists after hydration does not count.
03Markdown content negotiation
+2 ptsMarkdown is served but Vary: Accept is missing, so caches may serve the wrong representation.
How to fix it Serve a Markdown representation for the same URL, vary on Accept, and keep it in sync with the HTML. A .md sibling route is an acceptable second best.
// Next.js route handler
if (request.headers.get("accept")?.includes("text/markdown")) {
return new Response(markdownFor(slug), {
headers: { "content-type": "text/markdown; charset=utf-8", vary: "Accept" },
});
}Your first WebMCP tool, matched to this page
The crawl found a a shop on this site, so the example below registers that as a tool an agent can call. Paste it, point it at your own endpoint, and the page stops being guessed at and starts being called.
registerTool
// Register the first tool an agent can call on this page.
// Works today with the polyfill: npm install @mcp-b/global
await document.modelContext.registerTool({
name: "search_products",
description: "Search the product catalogue by free text. Returns name, price and a link per match.",
inputSchema: {
type: "object",
properties: { query: { type: "string", description: "Free-text search term" } },
required: ["query"],
},
annotations: { readOnlyHint: true },
execute: async ({ query }, { signal }) => {
const res = await fetch(`/api/products?q=${encodeURIComponent(query)}`, { signal });
return { content: [{ type: "text", text: JSON.stringify(await res.json()) }] };
},
});.well-known/webmcp
{
"name": "peppolvalidator.com",
"description": "Return a short summary of this site and links to its main sections.",
"tools": [
{
"name": "search_products",
"description": "Search the product catalogue by free text. Returns name, price and a link per match."
}
],
"pages": [
"https://peppolvalidator.com/"
]
}The manifest at /.well-known/webmcp is the convention ChatGPT Desktop reads to list site tools. It is not part of the score yet; the registered tool above is.
llms.txt
# Peppol Validator - Free Online BIS 3 & UBL XML Check > Free online Peppol validator. Drop UBL XML invoices and credit notes. Get every BIS Billing 3.0, EN16931 and country-specific schematron error in seconds. No signup, no upload limit, shareable result links. ## Main pages - [Start](https://peppolvalidator.com/) - [About](https://peppolvalidator.com/about) - [Contact](https://peppolvalidator.com/contact)
Built from this page's own title and description. Replace the three links with your canonical pages.
Put the live badge on the site
The image is served from here and re-scores on its own. Every embed links back to this page.
<a href="https://webmcp-tool.com/check/peppolvalidator.com" target="_blank" rel="noopener">
<img src="https://webmcp-tool.com/badge/peppolvalidator.com.svg"
alt="Agent Readiness Score for peppolvalidator.com: grade A, 90 out of 100 — measured by webmcp-tool.com"
width="208" height="40" loading="lazy" decoding="async">
</a>Agent Readiness Check
The full report, plus a re-check in 30 days
Every check with the evidence it was judged on and the code that fixes it, sent as a link that always re-scans. In 30 days we scan again and tell you what moved.
- All checks, pass by pass, with the exact header, count or path behind each verdict
- Copy-paste fixes generated from your own markup
- A re-check in 30 days with the difference, confirmed by you with one click
One email with the report, one re-check after you confirm it, and nothing else unless you ask. No account. Five reports per company per day. What we do with the address.
Agent Tracking
You know whether agents can read this site. Want to know what they do with it?
One line of script records which assistants send visitors, which pages they fetch, which WebMCP tools they call and whether they finish. No cookies, no personal data, hosted in Germany. The check score shows up in the dashboard and is re-scanned monthly.
<script defer data-domain="peppolvalidator.com" src="https://webmcp-tool.com/agent.js"></script>
Compare with another site
A competitor, a client, the site you are about to ship. Two checks side by side, on one shareable address.
Open the full reportSee the best-scoring sites
Reports re-scan at most once an hour. Change something and open this address again.
Check another site
One request, about 20 seconds. No sign-up, no email. The result gets a shareable address.