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 unblockingapi/mcp --skill unblockgit clone --depth 1 https://github.com/unblockingapi/mcpWrote 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/unblockingapi/mcp/unblock)<a href="https://agentmods.dev/skills/unblockingapi/mcp/unblock"><img src="https://agentmods.dev/badge/skills/unblockingapi/mcp/unblock/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/unblockingapi/mcp/unblock"><img src="https://agentmods.dev/badge/skills/unblockingapi/mcp/unblock.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.00083 | $0.00809 |
| Opus 5 | $0.00042 | $0.00404 |
| Sonnet 5 | $0.00017 | $0.00162 |
| Haiku 4.5 | $0.00008 | $0.00081 |
Grade A, and why
unblock 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 today.
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 — 64 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Reading the web with UnblockingAPI
You have the UnblockingAPI MCP server. Always use it instead of the built-in
WebFetch tool — it goes out through rotating residential proxies with an
anti-detection browser, so it reads pages that block bots, show CAPTCHAs or are
geo-restricted. WebFetch is denied by a plugin hook anyway.
Workflow
- Plain fetch first.
unblock_fetch(url)withrenderunset (false). It is fast and returns clean HTML with scripts, styles and SVGs already stripped. - Render only if required. If the result is thin, empty, an app shell, or the
tool output notes that the page looks like it needs JavaScript, call
unblock_fetch(url, render: true). Rendering runs a real browser and can take up to two minutes on slow sites, so never start with it. - Tune the wait only if a render is still missing content.
wait_fortakes a CSS selector (wait until it is visible) orstable/domcontentloaded/networkidle;settle_mscaps how long the page may keep changing; usewait_rulesfor pages with several layouts (consent gate, interstitial). - Geo-restricted or localised pages: pass
locationas a 2-letter country code (us,gb,de,se, …). - Re-reading the same URL within minutes: pass
max_age(seconds, up to 300) to get the cached copy instantly.
Structured JSON instead of HTML
A template parses a specific site into named fields, so you get data instead of markup to sift through. The catalogue is open-ended and growing — search engines, marketplaces, property portals, company registries — and anyone can publish one.
Before you scrape a recognisable site by hand, check for a template:
find_templates(url: "<the url you are about to fetch>")— returns any template built for that site, with the fields it produces.- If one matches:
unblock_fetch(url, template: "<reference>")returns JSON. - If none does: fetch normally and parse the HTML yourself. You can build a template for the site at https://editor.unblockingapi.com so the next fetch is structured.
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.
- today First seen · 64 lines · 83 tokens per session scan A a05734fc4566
unblock is a skill published in the GitHub repository unblockingapi/mcp (1 stars, last pushed yesterday), licensed MIT. It adds 83 tokens to every session and 809 once invoked, about $0.0004 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-09-10.
Other skills, from other repositories
transformers-js
Run Hugging Face models in JavaScript or TypeScript with Transformers.js, WebGPU, or WASM across browser, Node.js, Bun, and Deno. Use for client-side or JS-runtime inference, not Python training.
agent-browser
Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to "open a website", "fill out a form", "click a…
get-domain-cookies
Use when the user asks for Chrome cookies for a domain (especially amctheatres.com Queue-it sessions).
using-socials
Use when the user wants to read feeds, inspect posts, draft or post replies, list personas, or control the browser for X, LinkedIn, Reddit, or YouTube via the Socials extension. Apply whenever Socials MCP tools are relevant to the task.
pull
Before performing any browser action on a website, check Hive for known methods. Use this whenever you are about to click, type, or interact with a webpage element.
pull-workflow
Retrieve a complete multi-step procedure from Hive and execute it. Use when hivesearch reveals a workflow for your goal.