Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add holon-run/webmcp-bridge --skill webmcp-adapter-creatorgit clone --depth 1 https://github.com/holon-run/webmcp-bridgeWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/holon-run/webmcp-bridge/webmcp-adapter-creator)<a href="https://agentmods.dev/skills/holon-run/webmcp-bridge/webmcp-adapter-creator"><img src="https://agentmods.dev/badge/skills/holon-run/webmcp-bridge/webmcp-adapter-creator/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/holon-run/webmcp-bridge/webmcp-adapter-creator"><img src="https://agentmods.dev/badge/skills/holon-run/webmcp-bridge/webmcp-adapter-creator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00051 | $0.00985 |
| Opus 5 | $0.00026 | $0.00492 |
| Sonnet 5 | $0.00010 | $0.00197 |
| Haiku 4.5 | $0.00005 | $0.00098 |
Grade A, and why
webmcp-adapter-creator scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 87 lines — stays where its author put it; the contents beside it link to each section on GitHub.
WebMCP Adapter Creator
Use this skill to create or update a fallback SiteAdapter for @webmcp-bridge/local-mcp.
When To Use
Use this skill when:
- the target site does not expose native
navigator.modelContext - an existing adapter does not exist yet
- an existing adapter needs new tools, pagination, or request-template refresh
- a site requires browser-side request execution instead of DOM-only scraping
If the user only needs to connect to an existing site through the bridge, use $webmcp-bridge instead.
Prerequisites
- The target site URL is known.
- The user can authenticate in the browser profile if the site requires login.
pnpmis installed for local package work.npx playwright installhas already been run in the current environment when Playwright browsers are not present.
Core Workflow
- Confirm the site really needs a fallback adapter:
- check whether native
navigator.modelContextalready exists - if native WebMCP exists, stop and use
$webmcp-bridgeinstead of writing an adapter
- check whether native
- Scaffold a new adapter package when starting from scratch:
skills/webmcp-adapter-creator/scripts/scaffold-adapter.sh --name <site> --host <host> --url <url>
- Fix the contract first:
- implement
manifest - implement
createAdapter() - keep all payloads JSON-serializable
- implement
- Design the tool surface before coding extraction logic:
- use stable product names such as
tweet.get,timeline.home.list,user.get - put parameter details in schema field descriptions, not only in tool descriptions
- use stable product names such as
- Prefer browser-side request execution over server-side credential replay:
- run requests in the page context so the site's own auth/session state is reused
- do not move cookies or bearer tokens into local-mcp
- Discover stable request templates from real page behavior:
- trigger the target action in the page
- observe the network request shape
- extract a reusable request template with placeholders for ids, cursors, queries, or feature flags
- Implement fallback layers explicitly:
- first try browser-side network/template execution
- for assistant/chat products, prefer intercepting the product's real request/response path over reading rendered text
- if network execution is unavailable or the template is missing, fall back to DOM extraction when safe
- include
sourceandreasonfields so callers can see which path ran - when a helper is cross-site and not product-specific, prefer putting it in a shared adapter utility package instead of copying it into one adapter
- for long prompts, prefer one-shot DOM insertion into the real composer and use incremental
type()orfill()only as a fallback - when waiting for chat/image completion, use activity-aware idle deadlines instead of a fixed wall-clock timeout
- activity signals may include stop controls, response fingerprint changes, feedback buttons, or generated image count changes
- compare against a normalized snapshot of the previous response before declaring a new answer ready
- do not reset or reopen the page during fallback confirmation if that would lose the current conversation/session context
- Add contract and integration coverage:
- package-local unit tests for tool behavior and validation
- local-mcp integration tests for full bridge execution
- cover long prompt insertion, long-thinking waits, stale-response misdetection, and session-preserving fallback paths
What ships with it
8 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 10d ago First seen · 87 lines · 51 tokens per session scan A 3296510dd089
webmcp-adapter-creator is a skill published in the GitHub repository holon-run/webmcp-bridge (27 stars, last pushed 5mo ago), licensed MIT. It adds 51 tokens to every session and 985 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
webcmd-browser
Use when a live browser task requires Playwright interaction, authenticated handoff, visible UI verification, or ad-hoc page inspection.
moli-webfetch
Fetch, inspect, crawl, and capture live, JavaScript-rendered websites with Moli. Use when Codex needs current web content, web research, fact lookup, link following, a bounded crawl, client-rendered or response-gated content, network diagnostics, or a standalone HTML, Markdown, JSON, semantic-tree, viewport or…
moli-cdp-server
Start Moli's CDP server and connect Playwright, Puppeteer, or raw CDP clients. Use to run a headless-browser CDP endpoint, replace a Chromium process, attach over CDP, enable real layout and screenshot surfaces, or diagnose CDP discovery, connection, and target startup—even when Moli is not named.
playwright-rs-usage
Procedural reference for using playwright-rs in Rust browser-automation code — object model (Browser/Context/Page/Locator), the locator!() macro, builder pattern for options, auto-wait semantics, adding the crate and installing its browsers, and how to capture / inspect traces for failure diagnosis. Use when writing…
opensteer
Direct browser control via CDP. Use when the user wants to automate, inspect, scrape, test, or interact with web pages.
browser-automation-expert
Drive a real browser to navigate, extract data and complete flows on sites without an API: scraping, crawling, authentication, dynamic content and anti-bot handling. Use when the user mentions web scraping, crawling, browser automation, Puppeteer or headless Chrome, wants data pulled from a website, needs a login or…