apify_dataset_items
Pack: apify · Endpoint: https://gateway.pipeworx.io/apify/mcp
Fetch items from an existing Apify dataset (e.g. the output of a prior Actor run). Example: apify_dataset_items({ datasetId: “abc123”, limit: 50, _apiKey: “your-token” }).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
datasetId | string | yes | The dataset ID (or username~dataset-name). Returned as defaultDatasetId from an Actor run. |
limit | number | no | Maximum number of items to return. Default 100 (Apify itself has no default limit; we cap for readability). |
offset | number | no | Number of items to skip from the start. Default 0. |
clean | boolean | no | If true (default), return only non-empty items and skip hidden fields. |
_apiKey | string | yes | Your Apify API token (get one at https://console.apify.com/sign-up). |
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_dataset_items","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.