apify_run_actor
Pack: apify · Endpoint: https://gateway.pipeworx.io/apify/mcp
Run an Apify Actor (a cloud scraping/automation program) and get its dataset results in a single blocking call. The run is capped at 300 seconds. Pass the Actor input as an input object — its shape depends on the Actor. Example: apify_run_actor({ actorId: “apify~web-scraper”, input: { startUrls: [{ url: “https://example.com” }] }, _apiKey: “your-token” }). Browse Actors at https://apify.com/store.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
actorId | string | yes | Actor identifier. Use the tilde form “username |
input | object | no | The Actor input JSON. Passed as the run INPUT. Shape is Actor-specific — see the Actor page in the Apify Store. Optional; defaults to {}. |
_apiKey | string | yes | Your Apify API token (get one at https://console.apify.com/sign-up, Settings → Integrations). |
Example call
curl -X POST https://gateway.pipeworx.io/apify/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"apify_run_actor","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"apify": {
"url": "https://gateway.pipeworx.io/apify/mcp"
}
}
}
See Getting Started for client-specific install steps.