Skip to content
Merged
Changes from 4 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
30 changes: 28 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,13 @@
"mcp_config": {
"command": "node",
"args": [
"${__dirname}/dist/stdio.js"
"${__dirname}/dist/stdio.js",
"--tools",
"${user_config.tools}",
"--actors",
"${user_config.actors}",
"--enable-adding-actors",
"${user_config.enable-adding-actors}"
],
"env": {
"APIFY_TOKEN": "${user_config.apify_token}"
Expand All @@ -55,6 +61,26 @@
"description": "Your Apify API token for authentication",
"sensitive": true,
"required": true
},
"tools": {
"type": "string",
"title": "Enabled Tool Categories",
"description": "A comma-separated list of tool categories to enable. Available options: docs, runs, storage, preview.",
"required": false,
"default": "docs"
},
"actors": {
"type": "string",
"title": "Enabled Actors",
"description": "A comma-separated list of full Actor names to add to the server on startup (e.g., apify/rag-web-browser).",
"required": false,
"default": "apify/rag-web-browser"
},
"enable-adding-actors": {
"type": "boolean",
"title": "Enable Dynamic Actor Adding",
"description": "Allow dynamically adding Actors as tools based on user requests during a session.",
"default": true
}
},
"compatibility": {
Expand All @@ -68,4 +94,4 @@
"node": ">=20.0.0"
}
}
}
}