# Scrapi Mcp

> MCP server for using ScrAPI to scrape web pages.

- **Type:** MCP server
- **Install:** `agentstack add mcp-deventerprisesoftware-scrapi-mcp`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [DevEnterpriseSoftware](https://agentstack.voostack.com/s/deventerprisesoftware)
- **Installs:** 0
- **Category:** [Web & Browser](https://agentstack.voostack.com/c/web-and-browser)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [DevEnterpriseSoftware](https://github.com/DevEnterpriseSoftware)
- **Source:** https://github.com/DevEnterpriseSoftware/scrapi-mcp
- **Website:** https://scrapi.tech

## Install

```sh
agentstack add mcp-deventerprisesoftware-scrapi-mcp
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# ScrAPI MCP Server

[](https://opensource.org/licenses/MIT)
[](https://www.npmjs.com/package/@deventerprisesoftware/scrapi-mcp)
[](https://hub.docker.com/r/deventerprisesoftware/scrapi-mcp)
[](https://smithery.ai/servers/DevEnterpriseSoftware/scrapi-mcp)
[](https://glama.ai/mcp/servers/DevEnterpriseSoftware/scrapi-mcp)

ScrAPI MCP Server lets MCP-compatible clients scrape web pages through [ScrAPI](https://scrapi.tech).

ScrAPI is useful when a page needs a real browser session, CAPTCHA solving, residential proxy access, cookie banner handling, JavaScript rendering, geolocation-aware fetching, or pre-scrape browser actions such as clicking and scrolling.

## Contents

- [Features](#features)
- [Available tools](#available-tools)
- [Prerequisites](#prerequisites)
- [API key](#api-key)
- [Quick start](#quick-start)
- [MCP client setup](#mcp-client-setup)
- [HTTP transport](#http-transport)
- [Cloud-hosted server](#cloud-hosted-server)
- [Usage examples](#usage-examples)
- [Browser commands](#browser-commands)
- [Troubleshooting](#troubleshooting)
- [Development](#development)
- [License](#license)

## Features

- Scrape any valid `https://` or `http://` URL through ScrAPI.
- Return either raw HTML or readable Markdown.
- Run browser commands before scraping.
- Use stdio transport for desktop MCP clients.
- Use Streamable HTTP transport for remote MCP clients and local testing.
- Run with `npx`, Docker, Smithery, or from source.

## Available Tools

### `scrape_url_html`

Scrapes a URL and returns the result as HTML.

Use this when you need the page structure, links, tables, embedded metadata, or custom downstream parsing.

Inputs:

| Name | Type | Required | Description |
| ---- | ---- | -------- | ----------- |
| `url` | string | Yes | The absolute URL to scrape. Must be a valid URL. |
| `browserCommands` | string | No | JSON array string of browser commands to execute before scraping. |

Returns:

- `text/html` content from the requested page.
- `isError: true` with the ScrAPI error body when the upstream request fails.

### `scrape_url_markdown`

Scrapes a URL and returns the result as Markdown.

Use this when the text content matters more than the HTML structure, for example article extraction, product copy, search result summaries, or LLM-friendly page analysis.

Inputs:

| Name | Type | Required | Description |
| ---- | ---- | -------- | ----------- |
| `url` | string | Yes | The absolute URL to scrape. Must be a valid URL. |
| `browserCommands` | string | No | JSON array string of browser commands to execute before scraping. |

Returns:

- `text/markdown` content from the requested page.
- `isError: true` with the ScrAPI error body when the upstream request fails.

## Prerequisites

Choose one of the following runtime options:

- Node.js 18 or newer for `npx` or local development.
- Docker for container-based usage.
- An MCP-compatible client such as Claude Desktop, MCP Inspector, or another client that supports stdio or Streamable HTTP MCP servers.

## API Key

Set `SCRAPI_API_KEY` to use your ScrAPI account:

```bash
export SCRAPI_API_KEY="your-scrapi-api-key"
```

PowerShell:

```powershell
$env:SCRAPI_API_KEY = "your-scrapi-api-key"
```

An API key is optional. Without one, ScrAPI currently allows limited free usage with lower concurrency and queueing priority.

## Quick Start

### Run with NPX

The default transport is stdio, which is the transport most desktop MCP clients use when they launch a local server process.

```bash
npx -y @deventerprisesoftware/scrapi-mcp
```

With an API key:

```bash
SCRAPI_API_KEY="your-scrapi-api-key" npx -y @deventerprisesoftware/scrapi-mcp
```

PowerShell:

```powershell
$env:SCRAPI_API_KEY = "your-scrapi-api-key"
npx -y @deventerprisesoftware/scrapi-mcp
```

### Run with Docker

The published Docker image starts in HTTP mode by default and listens on port `5000`.

```bash
docker run --rm -p 5000:5000 -e SCRAPI_API_KEY="your-scrapi-api-key" deventerprisesoftware/scrapi-mcp
```

MCP endpoint:

```text
http://localhost:5000/mcp
```

To run the container as a stdio server for a local MCP client:

```bash
docker run -i --rm -e TRANSPORT=stdio -e SCRAPI_API_KEY="your-scrapi-api-key" deventerprisesoftware/scrapi-mcp
```

## MCP Client Setup

Most local coding assistants use one of these two configuration shapes:

- Stdio: the client starts this package with `npx` or Docker and communicates over stdin/stdout.
- Streamable HTTP: you start this server yourself with `TRANSPORT=http`, then point the client at `http://localhost:5000/mcp` or your deployed URL.

When a client has a tool timeout setting, use a value close to `300000` milliseconds or `300` seconds. ScrAPI can take several minutes for pages that require CAPTCHA solving, browser rendering, or multiple browser commands.

### Claude Desktop with NPX

Add this to your `claude_desktop_config.json`:

```json
{
  "mcpServers": {
    "ScrAPI": {
      "command": "npx",
      "args": ["-y", "@deventerprisesoftware/scrapi-mcp"],
      "env": {
        "SCRAPI_API_KEY": "your-scrapi-api-key"
      }
    }
  }
}
```

### Claude Desktop with Docker

```json
{
  "mcpServers": {
    "ScrAPI": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "-e",
        "SCRAPI_API_KEY",
        "deventerprisesoftware/scrapi-mcp"
      ],
      "env": {
        "SCRAPI_API_KEY": "your-scrapi-api-key"
      }
    }
  }
}
```

After changing the config, restart Claude Desktop. You should see the two ScrAPI tools available in the MCP tools list.

### Cursor

Cursor supports project configuration at `.cursor/mcp.json` and global configuration at `~/.cursor/mcp.json`. See the [Cursor MCP documentation](https://docs.cursor.com/context/model-context-protocol).

Stdio configuration:

```json
{
  "mcpServers": {
    "scrapi": {
      "command": "npx",
      "args": ["-y", "@deventerprisesoftware/scrapi-mcp"],
      "env": {
        "SCRAPI_API_KEY": "${env:SCRAPI_API_KEY}"
      }
    }
  }
}
```

HTTP configuration:

```json
{
  "mcpServers": {
    "scrapi": {
      "url": "http://localhost:5000/mcp"
    }
  }
}
```

For HTTP, start the server first:

```bash
TRANSPORT=http PORT=5000 SCRAPI_API_KEY="your-scrapi-api-key" npx -y @deventerprisesoftware/scrapi-mcp
```

### Windsurf

Windsurf Cascade stores MCP servers in `~/.codeium/windsurf/mcp_config.json`. You can also add servers from `Windsurf Settings` > `Cascade` > `MCP Servers`. See the [Windsurf MCP documentation](https://docs.windsurf.com/windsurf/cascade/mcp).

Stdio configuration:

```json
{
  "mcpServers": {
    "scrapi": {
      "command": "npx",
      "args": ["-y", "@deventerprisesoftware/scrapi-mcp"],
      "env": {
        "SCRAPI_API_KEY": "${env:SCRAPI_API_KEY}"
      }
    }
  }
}
```

HTTP configuration:

```json
{
  "mcpServers": {
    "scrapi": {
      "serverUrl": "http://localhost:5000/mcp"
    }
  }
}
```

Windsurf supports `serverUrl` or `url` for remote HTTP MCP servers. If your team uses enterprise MCP controls, the server ID in the admin whitelist must match the key name, for example `scrapi`.

### Kilo Code

Kilo Code stores MCP configuration in the main Kilo config file. Use `~/.config/kilo/kilo.jsonc` for global configuration, `kilo.jsonc` in the project root, or `.kilo/kilo.jsonc` for project-specific configuration. See the [Kilo Code MCP documentation](https://kilo.ai/docs/automate/mcp/using-in-kilo-code).

Local stdio configuration:

```jsonc
{
  "mcp": {
    "scrapi": {
      "type": "local",
      "command": ["npx", "-y", "@deventerprisesoftware/scrapi-mcp"],
      "environment": {
        "SCRAPI_API_KEY": "your-scrapi-api-key"
      },
      "enabled": true,
      "timeout": 300000
    }
  }
}
```

Remote HTTP configuration:

```jsonc
{
  "mcp": {
    "scrapi": {
      "type": "remote",
      "url": "http://localhost:5000/mcp",
      "enabled": true,
      "timeout": 300000
    }
  }
}
```

On Windows, if `npx` is not found from the Kilo Code UI, use `cmd` as the command and pass `/c`, `npx`, `-y`, and `@deventerprisesoftware/scrapi-mcp` as arguments.

### Codex

Codex supports MCP servers in the CLI and IDE extension. Both use the same MCP configuration. By default, Codex stores it in `~/.codex/config.toml`; trusted projects can also use `.codex/config.toml`. See the [Codex MCP documentation](https://developers.openai.com/codex/mcp).

Add a stdio server with the Codex CLI:

```bash
codex mcp add scrapi --env SCRAPI_API_KEY="your-scrapi-api-key" -- npx -y @deventerprisesoftware/scrapi-mcp
codex mcp list
```

Equivalent `config.toml` stdio configuration:

```toml
[mcp_servers.scrapi]
command = "npx"
args = ["-y", "@deventerprisesoftware/scrapi-mcp"]
startup_timeout_sec = 20
tool_timeout_sec = 300

[mcp_servers.scrapi.env]
SCRAPI_API_KEY = "your-scrapi-api-key"
```

HTTP configuration:

```toml
[mcp_servers.scrapi]
url = "http://localhost:5000/mcp"
tool_timeout_sec = 300
```

In the Codex terminal UI, run `/mcp` to confirm the server is connected.

### VS Code

VS Code stores MCP configuration in `.vscode/mcp.json` for a workspace or in your user profile. The top-level key is `servers`, not `mcpServers`. See the [VS Code MCP configuration reference](https://code.visualstudio.com/docs/agents/reference/mcp-configuration).

Stdio configuration:

```json
{
  "inputs": [
    {
      "type": "promptString",
      "id": "scrapi-api-key",
      "description": "ScrAPI API key",
      "password": true
    }
  ],
  "servers": {
    "scrapi": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@deventerprisesoftware/scrapi-mcp"],
      "env": {
        "SCRAPI_API_KEY": "${input:scrapi-api-key}"
      }
    }
  }
}
```

HTTP configuration:

```json
{
  "servers": {
    "scrapi": {
      "type": "http",
      "url": "http://localhost:5000/mcp"
    }
  }
}
```

Use the Command Palette commands `MCP: Add Server`, `MCP: List Servers`, and `MCP: Reset Cached Tools` to add, inspect, and refresh MCP servers.

### Claude Code

Claude Code supports MCP servers through the `claude mcp` CLI and the `/mcp` command inside Claude Code. See the [Claude Code MCP documentation](https://code.claude.com/docs/en/mcp).

Add a stdio server:

```bash
claude mcp add --transport stdio --env SCRAPI_API_KEY="your-scrapi-api-key" scrapi -- npx -y @deventerprisesoftware/scrapi-mcp
claude mcp list
```

Add an HTTP server:

```bash
claude mcp add --transport http scrapi http://localhost:5000/mcp
claude mcp list
```

To make the server available across all Claude Code projects, add `--scope user` before the server name:

```bash
claude mcp add --transport stdio --scope user --env SCRAPI_API_KEY="your-scrapi-api-key" scrapi -- npx -y @deventerprisesoftware/scrapi-mcp
```

Inside Claude Code, run `/mcp` to confirm the server is connected.

### Generic Stdio MCP Client

Use this shape for clients that accept a command, arguments, and environment variables:

```json
{
  "name": "ScrAPI",
  "command": "npx",
  "args": ["-y", "@deventerprisesoftware/scrapi-mcp"],
  "env": {
    "SCRAPI_API_KEY": "your-scrapi-api-key"
  }
}
```

## HTTP Transport

Set `TRANSPORT=http` to run the server over Streamable HTTP.

```bash
TRANSPORT=http PORT=5000 SCRAPI_API_KEY="your-scrapi-api-key" npx -y @deventerprisesoftware/scrapi-mcp
```

PowerShell:

```powershell
$env:TRANSPORT = "http"
$env:PORT = "5000"
$env:SCRAPI_API_KEY = "your-scrapi-api-key"
npx -y @deventerprisesoftware/scrapi-mcp
```

The MCP endpoint is:

```text
http://localhost:5000/mcp
```

Environment variables:

| Name | Default | Description |
| ---- | ------- | ----------- |
| `SCRAPI_API_KEY` | Limited default key | ScrAPI API key used when calling the ScrAPI scrape API. |
| `TRANSPORT` | `stdio` | Use `stdio` or `http`. |
| `PORT` | `5000` | Port used when `TRANSPORT=http`. |

### Test with MCP Inspector

Stdio mode:

```bash
npx @modelcontextprotocol/inspector npx -y @deventerprisesoftware/scrapi-mcp
```

HTTP mode:

```bash
TRANSPORT=http PORT=5000 npx -y @deventerprisesoftware/scrapi-mcp
```

Then open MCP Inspector and connect to:

```text
http://localhost:5000/mcp
```

## Cloud-Hosted Server

ScrAPI also provides hosted MCP endpoints:

```text
Streamable HTTP: https://api.scrapi.tech/mcp
SSE:             https://api.scrapi.tech/mcp/sse
```

Cloud MCP servers are not yet supported by every MCP client. They are most useful for custom clients, MCP Inspector, or platforms that support remote MCP servers.

To authenticate with your ScrAPI API key, pass it as a query parameter or request header:

- Query parameter: `https://api.scrapi.tech/mcp?apiKey=`
- Request header: `X-API-KEY: `

## Usage Examples

The exact interaction depends on your MCP client. In most clients, you can either ask the model to use the ScrAPI tool or call the tool directly from a tool inspector.

### Scrape a Page as Markdown

Tool:

```text
scrape_url_markdown
```

Arguments:

```json
{
  "url": "https://example.com"
}
```

Example prompt:

```text
Use ScrAPI to scrape https://example.com as Markdown and summarize the page.
```

### Scrape a Page as HTML

Tool:

```text
scrape_url_html
```

Arguments:

```json
{
  "url": "https://example.com"
}
```

Example prompt:

```text
Use ScrAPI to scrape https://example.com as HTML and extract every link.
```

### Accept Cookies Before Scraping

The `browserCommands` value must be a string containing a JSON array.

```json
{
  "url": "https://example.com",
  "browserCommands": "[{\"click\":\"#accept-cookies\"},{\"wait\":1000}]"
}
```

### Search a Site Before Scraping Results

```json
{
  "url": "https://example.com/search",
  "browserCommands": "[{\"input\":{\"input[name='q']\":\"web scraping\"}},{\"click\":\"button[type='submit']\"},{\"waitfor\":\"#results\"}]"
}
```

### Load More Content

```json
{
  "url": "https://example.com/products",
  "browserCommands": "[{\"scroll\":1200},{\"wait\":1000},{\"click\":\"button.load-more\"},{\"waitfor\":\".product-card:nth-child(25)\"}]"
}
```

## Browser Commands

Both tools support optional browser commands that interact with the page before ScrAPI captures the final result.

Commands are provided as a JSON array string. They are executed with human-like behavior such as random mouse movement and variable typing speed.

| Command | Format | Description |
| ------- | ------ | ----------- |
| Click | `{"click": "#buttonId"}` | Click an element by CSS selector. |
| Input | `{"input": {"input[name='email']": "value"}}` | Fill an input field. |
| Select | `{"select": {"select[name='country']": "USA"}}` | Select an option by value or visible text. |
| Scroll | `{"scroll": 1000}` | Scroll down by pixels. Use a negative value to scroll up. |
| Wait | `{"wait": 5000}` | Wait for milliseconds. Maximum: `15000`. |
| WaitFor | `{"waitfor": "#elementId"}` | Wait for an element to appear in the DOM. |
| JavaScript | `{"javascript": "console.log('test')"}` | Execute custom JavaScript. |

Readable command array:

```json
[
  { "click": "#accept-cookies" },
  { "wait": 2000 },
  { "input": { "input[name='search']": "web scraping" } },
  { "click": "button[type='submit']" },
  { "waitfor": "#results" },
  { "scroll": 500 }
]
```

Escaped as an MCP tool argument:

```json
{
  "url": "https://example.com",
  "browserCommands": "[{\"click\":\"#accept-cookies\"},{\"wait\":2000},{\"input\":{\"input[name='search']\":\"web scraping\"}},{\"click\":\"button[type='submit']\"},{\"waitfor\":\"#results\"},{\"scroll\":500}]"
}
```

Need help finding CSS selectors? Try the [Rayrun browser extension](https://chromewebstore.google.com/detail/rayrun/olljocejdgeipcaompahmnfebhkfmnma) to select elements and generate selectors.

For more details, see the [Browser Commands documentation](https://scrapi.tech/docs/api_details/v1_scrape/browser_commands).

## Troubleshooting

### The MCP client cannot find the server

- Confirm Node.js 18 or newer is installed if using `npx`.
- Confirm Docker Desktop is running if using Docker.
- Restart the MCP client after editing i

…

## Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [DevEnterpriseSoftware](https://github.com/DevEnterpriseSoftware)
- **Source:** [DevEnterpriseSoftware/scrapi-mcp](https://github.com/DevEnterpriseSoftware/scrapi-mcp)
- **License:** MIT
- **Homepage:** https://scrapi.tech

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** yes
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/mcp-deventerprisesoftware-scrapi-mcp
- Seller: https://agentstack.voostack.com/s/deventerprisesoftware
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
