Scrapybara MCP

act

Take action on a Scrapybara instance through an agent. The agent can control the instance with mouse/keyboard and bash commands.

Input Schema

NameRequiredDescriptionDefault
instance_idYesThe ID of the instance to act on.
promptYesThe prompt to act on. <EXAMPLES> - Go to https://ycombinator.com/companies, set batch filter to W25, and extract all company names. - Find the best way to contact Scrapybara. - Order a Big Mac from McDonald's on Doordash. </EXAMPLES>
schemaNoOptional schema if you want to extract structured output.

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "instance_id": { "description": "The ID of the instance to act on.", "type": "string" }, "prompt": { "description": "The prompt to act on.\n<EXAMPLES>\n- Go to https://ycombinator.com/companies, set batch filter to W25, and extract all company names.\n- Find the best way to contact Scrapybara.\n- Order a Big Mac from McDonald's on Doordash.\n</EXAMPLES>\n", "type": "string" }, "schema": { "description": "Optional schema if you want to extract structured output." } }, "required": [ "instance_id", "prompt" ], "type": "object" }