工具 API
get-dataset-items
Get items (rows) from a dataset — the output/results produced by an Actor run. Returns the rows themselves, not dataset metadata, counts, or a schema. When the user provides a datasetId and asks to retrieve results, output, data, or rows, call this tool directly. Default limit is 20. Use clean=true to skip empty items and hidden fields. USAGE: - Use when you need to read data from a dataset (all items or only selected fields). USAGE EXAMPLES: - user_input: Retrieve results from dataset abc123 - user_input: Get only metadata.url and title from dataset username~my-dataset
调用信息
- 工具标识
- apify-mcp-server.get-dataset-items
- 服务提供方
- Apify
- 平均响应
- 0 ms
- 近 7 天调用
- 0
输入参数
datasetId必填Dataset ID or username~dataset-name.
cleanIf true, returns only non-empty items and skips hidden fields (starting with #). Shortcut for skipHidden=true and skipEmpty=true.
offsetNumber of items to skip at the start. Default is 0.
limitMaximum number of items to return. Default is 20.
fieldsComma-separated list of fields to include in results. Fields in output are sorted as specified. Use dot notation for nested objects (e.g. "metadata.url"); the server auto-flattens parent prefixes.
omitComma-separated list of fields to exclude from results.
descIf true, results are returned in reverse order (newest to oldest).
flattenComma-separated list of fields to flatten (e.g. flatten="metadata" turns {"metadata":{"url":"x"}} into {"metadata.url":"x"}). Normally derived automatically from dot-notation in `fields`; specify only as a diagnostic override.