Skip to main content
just-scrape can be installed as a skill for AI coding agents via Vercel’s skills.sh. This lets agents like Claude Code, Cursor, and others call ScrapeGraphAI commands directly during a coding session.

Install the skill

Browse the skill: skills.sh/scrapegraphai/just-scrape/just-scrape

What this enables

Once installed, your coding agent can:
  • Extract structured data from any website using AI
  • Convert documentation pages to markdown for context
  • Search the web and extract structured results
  • Crawl multiple pages and collect data
  • Check your credit balance mid-session
  • Browse request history

How agents use it

Agents call just-scrape in --json mode for clean, token-efficient output:

Using with Claude Code

Claude Code is Anthropic’s agentic coding tool that runs directly in your terminal. Since Claude Code can execute shell commands, it works seamlessly with just-scrape.

Setup

1

Install just-scrape globally

2

Set your API key

Add the key to your shell profile (~/.zshrc, ~/.bashrc, etc.) so Claude Code inherits it automatically:
3

Start Claude Code and scrape

Launch Claude Code and ask it to scrape any website:

Add just-scrape to CLAUDE.md

To make Claude Code aware of just-scrape in every session, add instructions to the CLAUDE.md file in your project root (or ~/.claude/CLAUDE.md for global access):
CLAUDE.md

Example prompts for Claude Code

Once configured, you can ask Claude Code things like:
Claude Code will run the appropriate just-scrape command, parse the JSON output, and use the data to complete your task.

Claude Code + just-scrape in CI

You can also use Claude Code with just-scrape in non-interactive mode for automated workflows:

Tips

  • Set SGAI_API_KEY in your shell profile so the skill picks it up automatically.
  • Always use --json — agents don’t need spinners or banners.
  • Pass --schema with a JSON schema to get typed, predictable output:

MCP Server alternative

For a deeper integration in Cursor or Claude Desktop, use the MCP Server instead, which exposes ScrapeGraphAI as native tools available to the AI model.