webmcp-adapter-creator

webmcp-adapter-creator is a skill for Codex from holon-run/webmcp-bridge. It costs 51 tokens per session (985 once invoked), scanned A, original, MIT.

A toolkit for building browser adapters for websites that do not provide WebMCP, a standard way for AI tools to use website actions. It defines available actions and performs the corresponding requests in the browser.

In plain words
What is it for?
Creating site adapters, designing tool inputs, executing browser-side requests, adding pagination, and extracting request templates from observed page behavior.
Why use it?
It supplies a repeatable way to connect an agent to a site when no native connection exists. It can also update an existing adapter when the site's actions or request patterns change.

Skill for Codex

Written for Codex: agents/openai.yaml present. Also seen: $skill-name invocation.

Good fit Creating site adapters, designing tool inputs, executing browser-side requests, adding pagination, and extracting request templates from observed page behavior.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/holon-run/webmcp-bridge/webmcp-adapter-creator
Install

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.

Any agent
npx skills add holon-run/webmcp-bridge --skill webmcp-adapter-creator
Clone the repo
git clone --depth 1 https://github.com/holon-run/webmcp-bridge

Made for: Codex.

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

agentmods badge for webmcp-adapter-creator

README.md
[![agentmods](https://agentmods.dev/badge/skills/holon-run/webmcp-bridge/webmcp-adapter-creator/github.svg)](https://agentmods.dev/skills/holon-run/webmcp-bridge/webmcp-adapter-creator)
Your own site
<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.

agentmods 80×15 button for webmcp-adapter-creator

Your own site · 80×15
<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>
Per session 51 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 985 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 10d ago against content hash 3296510dd089, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

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.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/scaffold-adapter.sh, scripts/validate.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

skills/webmcp-adapter-creator/SKILL.md · 87 lines

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.
  • pnpm is installed for local package work.
  • npx playwright install has already been run in the current environment when Playwright browsers are not present.

Core Workflow

  1. Confirm the site really needs a fallback adapter:
    • check whether native navigator.modelContext already exists
    • if native WebMCP exists, stop and use $webmcp-bridge instead of writing an adapter
  2. Scaffold a new adapter package when starting from scratch:
    • skills/webmcp-adapter-creator/scripts/scaffold-adapter.sh --name <site> --host <host> --url <url>
  3. Fix the contract first:
    • implement manifest
    • implement createAdapter()
    • keep all payloads JSON-serializable
  4. 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
  5. 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
  6. 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
  7. 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 source and reason fields 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() or fill() 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
  8. 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

Read the full file on GitHub · 87 lines

Files

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.

Changes

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.

  1. 10d ago First seen · 87 lines · 51 tokens per session scan A 3296510dd089

Subscribe to this mod's changes

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.

Related

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.

agentrhq/webcmd · 30 tokens

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…

lexmount/moli · 90 tokens

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.

lexmount/moli · 74 tokens

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…

padamson/playwright-rust · 98 tokens

opensteer

Direct browser control via CDP. Use when the user wants to automate, inspect, scrape, test, or interact with web pages.

steerlabs/opensteer · 31 tokens

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…

personamanagmentlayer/pcl · 94 tokens