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 input JSON to pass to the Actor.'),
298
+
callOptions: z.object({
299
+
memory: z.number().optional(),
300
+
timeout: z.number().optional(),
301
+
}).optional()
302
+
.describe('Optional call options for the Actor.'),
303
+
});
304
+
305
+
exportconstcallActor: ToolEntry={
306
+
type: 'internal',
307
+
tool: {
308
+
name: HelperTools.ACTOR_CALL,
309
+
actorFullName: HelperTools.ACTOR_CALL,
310
+
description: `Call Actor and get dataset results. Call without input and result response with requred input properties. Actor MUST be added before calling, use ${HelperTools.ACTOR_ADD} tool before.`,
description: `Add an Actor or MCP server to the available tools of the Apify MCP server. A tool is an Actor or MCP server that can be called by the user. Do not execute the tool, only add it and list it in the available tools. For example, when a user wants to scrape a website, first search for relevant Actors using ${HelperTools.STORE_SEARCH} tool, and once the user selects one they want to use, add it as a tool to the Apify MCP server.`,
42
+
description:
43
+
`Add an Actor or MCP server to the available tools of the Apify MCP server.
44
+
A tool is an Actor or MCP server that can be called by the user.
45
+
Do not execute the tool, only add it and list it in the available tools.
46
+
For example, when a user wants to scrape a website, first search for relevant Actors
47
+
using ${HelperTools.STORE_SEARCH} tool, and once the user selects one they want to use,
48
+
add it as a tool to the Apify MCP server.
49
+
If added tools is not available, use generic tool ${HelperTools.ACTOR_CALL} to call added Actor directly.`,
0 commit comments