Fetch Actor details
fetch-actor-detailsRetrieve comprehensive details about any Apify Actor including its description, input schema, README, pricing, stats, and MCP tools. Specify exactly which information to fetch to optimize token usage.
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 |
|---|---|---|---|
| readme | No | Actor README summary when available, otherwise the full README documentation. | |
| mcpTools | No | Markdown listing of MCP tools exposed by the Actor (only present when `output.mcpTools` is requested). | |
| actorInfo | No | ||
| inputSchema | No | Actor input schema. | |
| outputSchema | No | Output schema inferred from successful runs. |