novada-proxy

novada-proxy is a skill for Claude Code, Codex from NovadaLabs/novada-proxy. It costs 66 tokens per session (1,865 once invoked), scanned A, original, MIT.

A skill for fetching, crawling, searching, extracting, and rendering web content through residential proxy servers, which route requests through different internet addresses.

In plain words
What is it for?
Use it to fetch blocked URLs, crawl websites, collect structured fields, research topics, access country-specific content, or maintain the same proxy address across multi-step browsing tasks.
Why use it?
It helps access sites that block ordinary requests, restrict content by country, or require browser rendering for JavaScript-heavy pages.

Skill for Claude CodeCodex

Part of the novada-proxy plugin — 2 skills, 1 MCP server shipped together

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.

agentmods
npx agentmods add skills/novadalabs/novada-proxy/skill
Any agent
npx skills add NovadaLabs/novada-proxy --skill skill
Clone the repo
git clone --depth 1 https://github.com/NovadaLabs/novada-proxy

Made for: Claude Code, Codex.

Or install novada-proxy, the plugin that ships this one along with the rest of its 2 skills, 1 MCP server.

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 novada-proxy

README.md
[![agentmods](https://agentmods.dev/badge/skills/novadalabs/novada-proxy/skill.svg)](https://agentmods.dev/skills/novadalabs/novada-proxy/skill)
Your own site
<a href="https://agentmods.dev/skills/novadalabs/novada-proxy/skill"><img src="https://agentmods.dev/badge/skills/novadalabs/novada-proxy/skill.svg" alt="Measured on agentmods" height="20"></a>
Per session 66 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,865 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00066 $0.01865
Opus 5 $0.00033 $0.00932
Sonnet 5 $0.00013 $0.00373
Haiku 4.5 $0.00007 $0.00186

Measured 4d ago against content hash ffffdb0c6c5b, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

novada-proxy 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 4d 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.

skill/SKILL.md · 176 lines

How it starts

The opening of the file, as written. The whole thing — 176 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Novada Proxy — Skill for Claude Code

When to Use This Skill

  • Fetching URLs that block direct requests (Cloudflare, Akamai, DataDome)
  • Scraping e-commerce, news, or professional sites (Amazon, LinkedIn, etc.)
  • Extracting structured fields (title, price, rating) without HTML parsing
  • Researching topics (search + batch read pipeline)
  • Crawling entire sites (discover URLs + parallel fetch)
  • Accessing geo-restricted content from 195+ countries
  • Multi-step flows requiring the same IP (login, pagination)
  • Rendering JS-heavy SPAs that return blank with standard HTTP

Setup

# Core (proxy fetch)
claude mcp add novada-proxy-mcp \
  -e NOVADA_PROXY_USER=your_username \
  -e NOVADA_PROXY_PASS=your_password \
  -- npx -y novada-proxy-mcp

# All tools (proxy + search + browser render)
claude mcp add novada-proxy-mcp \
  -e NOVADA_PROXY_USER=your_username \
  -e NOVADA_PROXY_PASS=your_password \
  -e NOVADA_API_KEY=your_key \
  -e NOVADA_BROWSER_WS=your_wss_url \
  -- npx -y novada-proxy-mcp

Credentials: novada.com -> Dashboard -> Residential Proxies

Tool Decision Tree

Need to fetch a URL?
  Static HTML page             -> novada_proxy_fetch
  Need specific fields         -> novada_proxy_extract
  JS-heavy / SPA / blank page  -> novada_proxy_render (5 credits)

Need multiple URLs?
  Have the URLs already        -> novada_proxy_batch_fetch (2-20 URLs, up to 5x parallel)
  Need links from ONE page     -> novada_proxy_map -> novada_proxy_batch_fetch
  Need to crawl a whole site   -> novada_proxy_crawl (recursive BFS, depth 1-5)

Need to find URLs by topic?    -> novada_proxy_search -> novada_proxy_batch_fetch

Need research on a topic?      -> novada_proxy_research (search + read + summarize)

Need same IP across calls?     -> novada_proxy_session (sticky IP via session_id)

Need to check connectivity?    -> novada_proxy_status

Tools Reference

Tool Purpose Credits Key Params
novada_proxy_fetch Fetch single URL via residential proxy 1 url, country, format, session_id
novada_proxy_batch_fetch Fetch 2-20 URLs concurrently 1/URL urls, concurrency (1-5), country
novada_proxy_extract Extract structured fields from URL 1 (5 if render fallback) url, fields[], render_fallback
novada_proxy_map Discover all internal links on a page 1 url, limit (10-200)
novada_proxy_crawl Recursive site crawl (BFS, depth 1-5) 1/page url, depth (1-5), limit, include_content
novada_proxy_session Sticky session (same IP across calls) 1 (3 if verify) session_id, url, verify_sticky
novada_proxy_search Google search as structured JSON 1 query, num (1-20), country
novada_proxy_render Render JS pages via real Chromium [BETA] 5 url, format, wait_for (CSS selector)
novada_proxy_research Search + read + summarize on a topic varies query, num_sources (1-10), country
novada_proxy_status Check proxy health + version 1 (none)

Read the full file on GitHub · 176 lines

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. 4d ago First seen · 176 lines · 66 tokens per session scan A ffffdb0c6c5b

Subscribe to this mod's changes

novada-proxy is a skill published in the GitHub repository NovadaLabs/novada-proxy (4 stars, last pushed 2mo ago), licensed MIT. It adds 66 tokens to every session and 1,865 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-31.

Related

Other skills, from other repositories

proxyclaw

ProxyClaw by IPLoop — Residential proxy access for AI agents. Route requests through 2M+ residential IPs across 195+ countries from real Android, Windows, Mac & Smart TV devices. Bypass geo-restrictions, rotate IPs automatically. Free tier with 0.5GB included. Earn unlimited proxy credits by contributing bandwidth via…

Iploop/proxyclaw · 90 tokens

proxy4agent

Residential proxy for AI agents — fetch any URL through 2M+ real IPs, bypass anti-bot, geo-target, sticky sessions.

Goldentrii/proxy4agent · 33 tokens

openclaw-ultra-scraping

Powerful web scraping, crawling, and data extraction with stealth anti-bot bypass. Bypasses anti-bot systems (Cloudflare Turnstile, CAPTCHAs) out of the box. Use when: (1) scraping websites that block normal requests, (2) extracting structured data from web pages, (3) crawling multiple pages with concurrency, (4)…

LeoYeAI/openclaw-ultra-scraping · 180 tokens

chrome-devtools-cli

Use this skill to write shell scripts or run shell commands to automate tasks in the browser or otherwise use Chrome DevTools via CLI.

ChromeDevTools/chrome-devtools-mcp · 31 tokens

chrome-devtools

Uses Chrome DevTools via MCP for efficient debugging, troubleshooting and browser automation. Use when debugging web pages, automating browser interactions, analyzing performance, or inspecting network requests. This skill does not apply to --slim mode (MCP configuration).

ChromeDevTools/chrome-devtools-mcp · 55 tokens

ui-screenshots

Regenerate the MockServer dashboard screenshots used on www.mock-server.com by driving a populated demo dashboard with headless Chromium (Playwright). Use when the dashboard UI has changed and the website screenshots (jekyll-www.mock-server.com/images/MockServer.png) need refreshing, or when asked to "update the UI…

mock-server/mockserver-monorepo · 103 tokens