You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.describe('The name of the Actor to call. For example, "apify/rag-web-browser".'),
308
308
step: z.enum(['info','call'])
309
-
.default('info')
310
309
.describe(`Step to perform: "info" to get Actor details and input schema (required first step), "call" to run the Actor (only after getting info).`),
311
310
input: z.object({}).passthrough()
312
311
.optional()
313
-
.describe(`The input JSON to pass to the Actor. For example, {"query": "apify", "maxResults": 5, "outputFormats": ["markdown"]}. Required only when step is "call".`),
312
+
.describe(`The input JSON to pass to the Actor. For example, {"query": "apify", "maxResults": 5}. Must be used only when step="call".`),
Copy file name to clipboardExpand all lines: src/tools/get-actor-output.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -82,7 +82,7 @@ USAGE:
82
82
USAGE EXAMPLES:
83
83
- user_input: Get data of my last Actor run
84
84
- user_input: Get number_of_likes from my dataset
85
-
- user_input: Return only crawl.statusCode and url from dataset 8TtYhCwKzQeQk7dJx
85
+
- user_input: Return only crawl.statusCode and url from dataset aab123
86
86
87
87
Note: This tool is automatically included if the Apify MCP Server is configured with any Actor tools (e.g., "apify-slash-rag-web-browser") or tools that can interact with Actors (e.g., "call-actor", "add-actor").`,
0 commit comments