agent-ready-webmcp · git:20260716.c5d769e · 2026-07-16 · sha256 7bfe7c666ca3bbdc
agent-ready-webmcp git:20260716.c5d769eA
Immutable. This exact content is served forever at /api/v1/blob/7bfe7c666ca3bbdc.
---
name: agent-ready-webmcp
description: >
Sub-skill de agent-ready-cloudflare: Implement WebMCP
---
# Implement WebMCP
Expose site tools to AI agents via the browser using the
[WebMCP API](https://webmachinelearning.github.io/webmcp/)
([Chrome blog](https://developer.chrome.com/blog/webmcp-epp)).
## Requirements
- Call `navigator.modelContext.registerTool()` for each tool you want to expose
- Each tool needs `name`, `description`, `inputSchema` (JSON Schema), and an `execute` callback
- Tools should expose your site's key actions (search, navigation, data retrieval)
- Use an `AbortController` signal to unregister tools when no longer needed
- The API is detected via browser rendering — ensure the script runs on page load
## Validate
```
POST https://isitagentready.com/api/scan
Content-Type: application/json
{"url": "https://YOUR-SITE.com"}
```
Check that `checks.discovery.webMcp.status` is `"pass"`.