Scrapeer MCP Server
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Scrapeer MCP ServerRun my 'Product Prices' flow and show me the data"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Scrapeer is a visual browser automation and web scraping platform for people who do not want to write scrapers from scratch. Build deterministic scraping workflows in a drag-and-drop editor, watch the browser run step by step, then run those same flows locally or in Scrapeer's cloud.
This MCP server connects AI agents to Scrapeer so they can:
run saved scraping flows and retrieve structured results
inspect flow definitions, block configs, execution steps, and run history
create or patch flows using Scrapeer's block catalog and validation APIs
check account credits and cancel active cloud runs
The result is a useful split of responsibilities: humans design reliable browser workflows in Scrapeer, and agents can trigger, monitor, debug, and extend those workflows through MCP.
Why Scrapeer
Scrapeer is built for glass-box scraping: you can see exactly what the scraper does, inspect each block's output, and fix the workflow when a site changes. Instead of asking an agent to improvise browser steps every time, Scrapeer gives agents a reliable set of saved, validated workflows they can run on demand.
Related MCP server: Hyperbrowser MCP Server
Quick Start
Create a Scrapeer API key at https://app.scrapeer.com/settings#security, then add the server to your MCP client. These examples use npx so users do not need to install the package globally.
Claude Code (.mcp.json)
For a project-scoped Claude Code config, create .mcp.json in the project root:
{
"mcpServers": {
"scrapeer": {
"command": "npx",
"args": ["-y", "@scrapeer/mcp-server"],
"env": { "SCRAPEER_API_KEY": "sk_..." }
}
}
}For a private user-scoped config, run claude mcp add --scope user --env SCRAPEER_API_KEY=sk_... scrapeer -- npx -y @scrapeer/mcp-server so Claude writes the correct ~/.claude.json entry for your machine.
Codex CLI and IDE extension (~/.codex/config.toml)
[mcp_servers.scrapeer]
command = "npx"
args = ["-y", "@scrapeer/mcp-server"]
[mcp_servers.scrapeer.env]
SCRAPEER_API_KEY = "sk_..."Cursor (~/.cursor/mcp.json or .cursor/mcp.json)
{
"mcpServers": {
"scrapeer": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@scrapeer/mcp-server"],
"env": { "SCRAPEER_API_KEY": "sk_..." }
}
}
}VS Code Copilot (.vscode/mcp.json)
{
"servers": {
"scrapeer": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@scrapeer/mcp-server"],
"env": { "SCRAPEER_API_KEY": "sk_..." }
}
}
}Available Tools
Read
Tool | Description |
| List your saved scraping flows |
| Get details about a specific flow |
| List the block types available for use in flows, with their custom-field schemas. Call this before any create/update/patch; guessing types or config keys leads to validation failures |
| Dry-run validate a flow JSON without saving |
| Account info: credit balance, subscription plan, cloud-run availability |
Run
Tool | Description |
| Trigger a cloud run and return immediately with an execution ID |
| Run a flow and poll until results are ready (recommended) |
| Check the status of a running or completed execution |
| Get structured output data from a completed run |
| Get block-by-block execution breakdown (useful for debugging failures) |
| List execution history, with optional filtering by status or flow |
| Cancel an active cloud execution |
Mutate
Tool | Description |
| Create a new (empty) flow with the given title |
| Replace a flow's entire definition (whole-flow overwrite). Prefer |
| Apply granular patch operations: add_block, update_block_custom, remove_block, add_edge, remove_edge |
Building flows: recommended sequence
The mutation tools enforce optimistic concurrency. Every save sends the version stamp the caller saw on its last read, and the gateway rejects stale writes with 409 so concurrent edits from a human in the editor and an LLM via MCP cannot silently overwrite each other. The MCP server tracks this version stamp automatically across calls in the same session, so the LLM does not have to manage it manually.
Typical sequences:
Create from scratch:
scrapeer_get_block_catalog -> learn valid block types
scrapeer_create_flow -> returns flow_id (event_id cached)
scrapeer_patch_flow flow_id [...] -> add_block ops; cache -> baseProjectEventIDModify an existing flow:
scrapeer_get_block_catalog -> learn valid block types
scrapeer_get_flow flow_id -> caches the current event_id
scrapeer_validate_flow {...} -> optional dry-run before commit
scrapeer_patch_flow flow_id [...] -> uses cached event_id automaticallyIf a 409 fires, the cached event_id is invalidated automatically. Re-call scrapeer_get_flow and retry the mutation.
Configuration
Variable | Required | Default | Description |
| Yes | - | API key from app.scrapeer.com/settings |
Development
pnpm install
pnpm test
pnpm run buildTests use msw to mock the Scrapeer API. No real credentials are needed.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Scrapeer/scrapeer-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server