@scraperapitech

ScraperAPI Skills

ScraperAPI's official Claude/OpenClaw plugin: a growing library of skills covering the full ScraperAPI surface.

当前版本
v1.0.0
bundle-plugin社区source-linked

ScraperAPI Plugin for Claude Code

Overview

ScraperAPI's official Claude Code plugin — a growing library of agent skills that cover the full ScraperAPI surface: onboarding, product primitives, SDK best practices, command-line and workflow tooling, and end-to-end data pipelines.

  • Onboarding & product routingscraperapi-agent-onboarding decides which ScraperAPI product fits the job.
  • Product primitives — first-class skills for the Standard API, Async Jobs, Crawler, DataPipeline, and MCP tools.
  • SDK best practices — language-specific guides for Python, Node.js, Ruby, PHP, and Java.
  • Tools — official ScraperAPI CLI and n8n community node.
  • Workflows — opinionated, ready-to-run recipes: scraper building, lead enrichment, autonomous research, market research, SEO audits, SERP intelligence, and price monitoring.

Learn more about agent skills.


Quick Start

1. Get an API key

Sign up at the ScraperAPI dashboard and copy your key.

2. Set your environment

export SCRAPERAPI_API_KEY="your-key-here"

3. Install the plugin

The plugin ships with ScraperAPI's hosted MCP server so all 22 MCP tools become available to the agent, authed via your SCRAPERAPI_API_KEY.

Claude Code (from GitHub):

npx skills add scraperapi/scraperapi-skills

The bundled .mcp.json wires the MCP server up automatically on first session.

OpenClaw (from ClawHub):

openclaw plugins install clawhub:@scraperapitech/scraperapi-skills

Once installed, the skills load automatically — start an agent session and try one of the Usage prompts below.


Skills

SkillDescription
scraperapi-agent-onboardingEntry point for agents and developers new to ScraperAPI. Read first when integrating ScraperAPI into an agent or app, picking the right product, or obtaining an API key.
scraperapi-mcpTeaches Claude how to optimally use the ScraperAPI MCP tools — tool selection, parameter tuning, credit minimization, large-output handling. Includes ready-to-use recipes.
scraperapi-asyncAsync Jobs API: submit scraping jobs in the background, retrieve via polling or webhook, including batch jobs up to 50,000 URLs.
scraperapi-crawlerCrawler product: crawl an entire site or section by following links automatically when target URLs aren't known up front.
scraperapi-datapipelineDataPipeline: managed, scheduled scraping projects that run automatically and deliver results via webhook or dashboard download.
scraperapi-python-sdkBest-practices reference for the Python SDK (scraperapi-sdk): client setup, the standard → render → premium → ultra_premium escalation ladder, async batches, structured data, error handling.
scraperapi-nodejs-sdkBest-practices reference for the Node.js / TypeScript SDK (scraperapi-sdk): CommonJS and ESM, async/await, POST/PUT, account info, error handling.
scraperapi-ruby-sdkBest-practices reference for the Ruby SDK (scraperapi gem): gem setup, all parameters, escalation ladder, sessions, status-code error handling.
scraperapi-php-sdkBest-practices reference for the PHP SDK (scraperapi/sdk Composer package): setup, all parameters, POST requests, error handling.
scraperapi-java-sdkBest-practices reference for the Java SDK (com.scraperapi:sdk): fluent builder API, escalation ladder, async jobs, structured data.
scraperapi-cliUse the official sapi command-line tool from shells, pipelines, cron, and CI. Covers install, auth, every command, JSON / piping behaviour, and common recipes.
scraperapi-n8nGenerate n8n workflows that use the official ScraperAPI community node (n8n-nodes-scraperapi-official). Produces importable workflow JSON or step-by-step build guides.
scraperapi-scraper-builderBuild a runnable scraper end-to-end: picks structured endpoint vs raw HTML, JS rendering, proxy tier, sync vs async, then generates a complete Python or Node.js script with retries, pagination, and credit estimation.
scraperapi-lead-enrichmentEnrich a contact or company from any seed (name, domain, LinkedIn URL, email) and produce a structured contact card with person and company fields.
scraperapi-research-agentAutonomous research agent: takes a question, uses ScraperAPI to search and scrape relevant pages, uploads content as file artifacts to the Anthropic Files API, then feeds everything to Claude for a cited markdown report.
scraperapi-market-researchMarket research from live web data: consumer sentiment, demand and trend signals, price and category structure, and competitive landscape — for product, pricing, positioning, or investment decisions.
scraperapi-seo-auditComprehensive SEO audit using live SERPs and on-page scraping: keyword rankings, titles/meta/headings/schema, content gaps, indexation, and prioritized recommendations. Runs out of the box via the bundled MCP tools.
scraperapi-serp-intelligenceSERP landscape analysis for SEO strategy: AI Overview presence and attribution, SERP feature composition, query intent, competitor visibility, and where rankings translate to traffic.
scraperapi-price-monitoringTrack Amazon, Walmart, and Google Shopping prices from ASINs, URLs, or product queries. Detects increases, decreases, restocks, and out-of-stock transitions against an optional baseline.

Usage

Each skill triggers from natural-language prompts in Claude Code. A few starting points:

# Onboarding
"I'm building an agent that needs web data — how do I use ScraperAPI?"

# Product primitives
"Submit these 5,000 URLs as a ScraperAPI async batch and call me back at https://my-app/cb"
"Crawl example.com and list every product URL"
"Set up a DataPipeline project that scrapes these ASINs every morning"

# CLI
"Use sapi to scrape https://news.ycombinator.com and pipe titles into a CSV"
"Write a cron line that runs sapi structured amazon product on this ASIN daily"

# SDKs
"Write a Python script that scrapes this URL with premium proxies and retries on 429"
"Show me the Node.js SDK call to autoparse Amazon product pages"

# Workflows
"Build me a scraper for this e-commerce site that extracts title, price, and stock"
"Enrich this contact: jane@example.com — find her LinkedIn, company, and role"
"Research the top Python web scraping frameworks and give me a cited report"
"Investigate how competitors are pricing their SaaS plans — scrape real pages and summarise"

Each skill's SKILL.md documents its full set of trigger phrases and behaviour.

Project Structure

.
├── .claude-plugin/
│   ├── plugin.json              # Claude Code plugin manifest
│   └── marketplace.json         # Claude Code marketplace listing
├── openclaw.plugin.json         # OpenClaw / ClawHub plugin manifest
├── package.json                 # scoped package name for ClawHub publishing
├── .mcp.json                    # hosted MCP server config (bundled for Claude Code)
├── skills/
│   ├── scraperapi-agent-onboarding/
│   ├── scraperapi-async/
│   ├── scraperapi-cli/
│   ├── scraperapi-crawler/
│   ├── scraperapi-datapipeline/
│   ├── scraperapi-java-sdk/
│   ├── scraperapi-lead-enrichment/
│   ├── scraperapi-market-research/
│   ├── scraperapi-mcp/
│   │   ├── SKILL.md
│   │   ├── references/          # per-tool deep dives
│   │   └── recipes/             # end-to-end workflows
│   ├── scraperapi-n8n/
│   ├── scraperapi-nodejs-sdk/
│   ├── scraperapi-php-sdk/
│   ├── scraperapi-price-monitoring/
│   ├── scraperapi-python-sdk/
│   ├── scraperapi-research-agent/
│   │   ├── SKILL.md
│   │   ├── scripts/             # research_agent.py — runnable CLI
│   │   └── assets/              # report_template.md
│   ├── scraperapi-ruby-sdk/
│   ├── scraperapi-scraper-builder/
│   ├── scraperapi-seo-audit/
│   └── scraperapi-serp-intelligence/
├── dist/                        # packaged .skill artifacts (for distribution)
├── LICENSE
└── README.md

Each skills/<name>/SKILL.md is self-contained — frontmatter declares trigger conditions and required environment, the body teaches Claude how to do the job.


源码与版本

源码仓库

scraperapi/scraperapi-skills

打开仓库

源码提交

d70d35bfc998c3f0504aa56baa7b58fee03ab213

查看提交

安装命令

openclaw plugins install clawhub:@scraperapitech/scraperapi-skills

元数据

  • 包名: @scraperapitech/scraperapi-skills
  • 创建时间: 2026/06/02
  • 更新时间: 2026/06/02
  • 执行代码:
  • 源码标签: main

兼容性

  • 构建于 OpenClaw: 2026.5.28
  • 插件 API 范围: >=2026.5.28
  • 标签: latest
  • 文件数: 50