Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.scrapebadger.com/llms.txt

Use this file to discover all available pages before exploring further.

Claude Desktop

Prerequisites

  • Claude Desktop installed
  • Node.js 18+ (for npx mcp-remote)
  • ScrapeBadger API key

Setup

1

Open Config File

Open Claude Desktop settings, go to Developer > Edit Config, or edit the file directly:
  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
2

Add ScrapeBadger

Add this to the config file:
{
  "mcpServers": {
    "scrapebadger": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://mcp.scrapebadger.com/mcp?api_key=YOUR_API_KEY"]
    }
  }
}
Replace YOUR_API_KEY with your ScrapeBadger API key.
3

Restart Claude Desktop

Fully quit and restart Claude Desktop. The ScrapeBadger tools will appear in the tools menu.
Claude Desktop uses stdio transport only. The npx mcp-remote package bridges between Claude Desktop’s stdio and our hosted HTTP server.

Verify

After restarting, click the tools icon (hammer) in Claude Desktop. You should see 92 ScrapeBadger tools listed (Twitter, Google, Vinted, and Web Scraping).

Examples

Try asking Claude:
“Search Twitter for recent posts about AI agents”
Claude will call the twitter_advanced_search tool automatically.
“Find the top 3 laptops on Google Shopping under $1500 and resolve the merchant URL for each”
Claude will chain google_shopping_search with google_shopping_product_click for each result.