Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/tools/actor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,7 @@ Actor description: ${definition.description}`;
: undefined,
annotations: {
title: definition.actorFullName,
destructiveHint: false,
openWorldHint: true,
},
// Allow long running tasks for Actor tools, make it optional for now
Expand Down Expand Up @@ -395,6 +396,7 @@ EXAMPLES:
}),
annotations: {
title: 'Call Actor',
destructiveHint: false,
openWorldHint: true,
},
call: async (toolArgs: InternalToolArgs) => {
Expand Down
1 change: 1 addition & 0 deletions src/tools/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ USAGE EXAMPLES:
ajvValidate: compileSchema(z.toJSONSchema(addToolArgsSchema)),
annotations: {
title: 'Add tool',
destructiveHint: false,
openWorldHint: true,
},
// TODO: I don't like that we are passing apifyMcpServer and mcpServer to the tool
Expand Down
1 change: 1 addition & 0 deletions src/tools/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ USAGE EXAMPLES:
ajvValidate: compileSchema(z.toJSONSchema(abortRunArgs)),
annotations: {
title: 'Abort Actor run',
destructiveHint: true,
openWorldHint: false,
},
call: async (toolArgs: InternalToolArgs) => {
Expand Down
Loading