actors-mcp-server

Official
  • .actor
{ "title": "Apify MCP Server", "type": "object", "schemaVersion": 1, "properties": { "actors": { "title": "Actors to be exposed for an AI application (AI agent)", "type": "array", "description": "List Actors to be exposed to an AI application (AI agent) for communication via the MCP protocol. \n\n Ensure the Actor definitions fit within the LLM context by limiting the number of used Actors.", "editor": "stringList", "prefill": [ "apify/instagram-scraper", "apify/rag-web-browser", "lukaskrivka/google-maps-with-contact-details" ] }, "enableActorAutoLoading": { "title": "Enable automatic loading of Actors based on context and use-case (experimental, check if it supported by your client)", "type": "boolean", "description": "When enabled, the server can dynamically add Actors as tools based on user requests and context. \n\nNote: MCP client must support notification on tool updates. To try it, you can use the [Tester MCP Client](https://apify.com/jiri.spilka/tester-mcp-client). This is an experimental feature and may require client-specific support.", "default": false }, "maxActorMemoryBytes": { "title": "Limit the maximum memory used by an Actor", "type": "integer", "description": "Limit the maximum memory used by an Actor in bytes. This is important setting for Free plan users to avoid exceeding the memory limit.", "prefill": 4096, "default": 4096 }, "debugActor": { "title": "Debug Actor", "type": "string", "description": "Specify the name of the Actor that will be used for debugging in normal mode", "editor": "textfield", "prefill": "apify/rag-web-browser", "sectionCaption": "Debugging settings (normal mode)" }, "debugActorInput": { "title": "Debug Actor input", "type": "object", "description": "Specify the input for the Actor that will be used for debugging in normal mode", "editor": "json", "prefill": { "query": "hello world" } } } }