Skip to content

Commit 07035b0

Browse files
committed
update readme
1 parent 6baa662 commit 07035b0

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,11 @@ Here is an overview list of all the tools provided by the Apify MCP Server.
169169
| `get-dataset-list` | storage | List all available datasets for the user. | |
170170
| `get-key-value-store-list`| storage | List all available key-value stores for the user. | |
171171
| `add-actor` | experimental | Add an Actor as a new tool for the user to call. | |
172+
| `get-actor-output`* | - | Retrieve the output from an Actor call which is not included in the output preview of the Actor tool. ||
173+
174+
> **Note:**
175+
>
176+
> The `get-actor-output` tool is automatically included with any Actor-related tool, such as `call-actor`, `add-actor`, or any specific Actor tool like `apify-slash-rag-web-browser`. When you call an Actor - either through the `call-actor` tool or directly via an Actor tool (e.g., `apify-slash-rag-web-browser`) - you receive a preview of the output. The preview depends on the Actor's output format and length; for some Actors and runs, it may include the entire output, while for others, only a limited version is returned to avoid overwhelming the LLM. To retrieve the full output of an Actor run, use the `get-actor-output` tool (supports limit, offset, and field filtering) with the `datasetId` provided by the Actor call.
172177
173178
### Tools configuration
174179

src/tools/actor.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ export async function callActorGetDataset(
6363
abortSignal?: AbortSignal,
6464
): Promise<CallActorGetDatasetResult | null> {
6565
const CLIENT_ABORT = Symbol('CLIENT_ABORT'); // Just internal symbol to identify client abort
66+
// TODO: we should remove this throw, we are just catching and then rethrowing with generic message
6667
try {
6768
const client = new ApifyClient({ token: apifyToken });
6869
const actorClient = client.actor(actorName);

0 commit comments

Comments
 (0)