Skip to content

Installation

nikolaout edited this page Apr 9, 2026 · 1 revision

Installation

npm Usage

The recommended way to run the server is from npm:

set OUTSCRAPER_API_KEY=YOUR_API_KEY
npx -y outscraper-mcp

Claude Desktop

{
  "mcpServers": {
    "outscraper": {
      "command": "npx",
      "args": ["-y", "outscraper-mcp"],
      "env": {
        "OUTSCRAPER_API_KEY": "YOUR_API_KEY"
      }
    }
  }
}

Claude Code

claude mcp add outscraper -e OUTSCRAPER_API_KEY=YOUR_API_KEY -- npx -y outscraper-mcp

Cursor

{
  "mcpServers": {
    "outscraper": {
      "command": "npx",
      "args": ["-y", "outscraper-mcp"],
      "env": {
        "OUTSCRAPER_API_KEY": "YOUR_API_KEY"
      }
    }
  }
}

VS Code

{
  "mcp": {
    "inputs": [
      {
        "type": "promptString",
        "id": "outscraperApiKey",
        "description": "Outscraper API Key",
        "password": true
      }
    ],
    "servers": {
      "outscraper": {
        "command": "npx",
        "args": ["-y", "outscraper-mcp"],
        "env": {
          "OUTSCRAPER_API_KEY": "${input:outscraperApiKey}"
        }
      }
    }
  }
}

Windows Note

If a client cannot resolve npx, use:

{
  "command": "C:\\Program Files\\nodejs\\npx.cmd",
  "args": ["-y", "outscraper-mcp"]
}

Environment Variables

Required:

  • OUTSCRAPER_API_KEY

Optional:

  • OUTSCRAPER_API_BASE_URL
  • HTTP_STREAMABLE_SERVER
  • SSE_LOCAL
  • HTTP_STATEFUL_SERVER
  • HOST
  • PORT
  • CLOUD_SERVICE

Clone this wiki locally