fetch-actor-details
Retrieve detailed information about an Apify Actor, including description, input schema, readme, and MCP tools. Control which fields to return to save tokens.
Instructions
Get detailed information about an Actor by its ID or full name (format: "username/name", e.g., "apify/rag-web-browser").
Use 'output' parameter with boolean flags to control returned information:
Default: All fields true except mcpTools
Selective: Set desired fields to true (e.g., output: { inputSchema: true })
Common patterns: inputSchema only, description + readme, mcpTools for MCP Actors
The 'readme' field returns the summary when available, full README otherwise. Use when querying Actor details, documentation, input requirements, or MCP tools.
EXAMPLES:
What does apify/rag-web-browser do?
What is the input schema for apify/web-scraper?
What tools does apify/actors-mcp-server provide?
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| actor | Yes | Actor ID or full name in the format "username/name", e.g., "apify/rag-web-browser". | |
| output | No | Specify which information to include in the response to save tokens. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| actorInfo | No | ||
| readme | No | Actor README summary when available, otherwise the full README documentation. | |
| inputSchema | No | Actor input schema. | |
| outputSchema | No | Output schema inferred from successful runs. | |
| mcpTools | No | Markdown listing of MCP tools exposed by the Actor (only present when `output.mcpTools` is requested). |