webmcp-tool

Agent Readiness Check

heroleague.ai

Checked 2026-09-08 06:38 UTC

84 / 100
grade B

Agents can partly use this site

An agent can read this site and get some way through it, with friction. The points still on the table are listed below, largest first.

Fitness44.5 / 50Does the site work for agents today?
Adoption23.5 / 31Which agent protocols are in place?
Agent Access17 / 20Can an agent reach the page at all?
Machine Readability20 / 20Can it understand what is on the page?
Actionability7.5 / 10Can it finish the job?
Integration12 / 15Can another system find and call your capabilities?
Identity & Commerce5.5 / 10Can an agent prove who it is, and pay you?
WebMCP Implementation6 / 6Are there tools an agent can call in the page?

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.

01Content survives without JavaScript

+3 pts

Some text arrives, but far less than a reader would see.

How to fix it Render the page on the server or prerender it at build time. Aim for a real <h1> and several hundred words of the actual content in the first response.

web.dev — rendering on the web

02An agent card other agents can read

+3 pts

No agent card or skills document responds.

How to fix it Publish an A2A agent card at /.well-known/agent-card.json, and keep serving /.well-known/agent.json while older clients are still in circulation.

A2A — agent discovery

03Agentic payment rails

+3 pts

This 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.

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": "heroleague.ai",
  "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://heroleague.ai/"
  ]
}

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

# HAIL — AI Fluency · Heroes of the AI League

> HAIL is an AI Fluency diagnostic for teams. Discover your hero AI archetype — how your team is really doing with AI, not how busy it looks — and the exact moves to level up.

## Main pages
- [Start](https://heroleague.ai/)
- [About](https://heroleague.ai/about)
- [Contact](https://heroleague.ai/contact)

Built from this page's own title and description. Replace the three links with your canonical pages.

Share this result

This address is public and stays current. The preview card carries the score.

Share on XShare on LinkedIn

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.

Agent Readiness Score for heroleague.ai: grade B, 84 out of 100 — measured by webmcp-tool.com
<a href="https://webmcp-tool.com/check/heroleague.ai" target="_blank" rel="noopener">
  <img src="https://webmcp-tool.com/badge/heroleague.ai.svg"
       alt="Agent Readiness Score for heroleague.ai: grade B, 84 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="heroleague.ai" src="https://agenttracking.co/agent.js"></script>

Open the dashboardHow it works

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.