You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For minimal configuration, if you want to use only a single Actor tool - without any discovery or generic calling tools, the server can be configured as follows:
198
+
199
+
```
200
+
https://mcp.apify.com?tools=apify/my-actor
201
+
```
202
+
203
+
This setup exposes only the specified Actor (`apify/my-actor`) as a tool. No other tools will be available.
204
+
205
+
**Configuring the CLI:**
206
+
207
+
The CLI can be configured using command-line flags. For example, to load the same tools as in the hosted server configuration, use:
As above, this exposes only the specified Actor (`apify/my-actor`) as a tool. No other tools will be available.
196
220
197
221
> **⚠️ Important recommendation**
198
222
>
199
223
> **The default tools configuration may change in future versions.** When no `tools` parameter is specified, the server currently loads default tools, but this behavior is subject to change.
200
224
>
201
225
> **For production use and stable interfaces, always explicitly specify the `tools` parameter** to ensure your configuration remains consistent across updates.
202
226
203
-
**Minimal configuration**
204
-
205
-
For example, to use only a single Actor tool - without any discovery or generic calling tools, the server can be configured like this:
206
-
207
-
```
208
-
https://mcp.apify.com?tools=apify/my-actor
209
-
```
210
-
211
-
This setup exposes only the specified Actor (`apify/my-actor`) as a tool. No other tools will be available.
212
-
213
227
### Backward compatibility
214
228
215
229
The v2 configuration preserves backward compatibility with v1 usage. Notes:
Copy file name to clipboardExpand all lines: src/stdio.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -70,7 +70,7 @@ Deprecated: use tools experimental category instead.`,
70
70
type: 'string',
71
71
describe: `Comma-separated list of tools to enable. Can be either a tool category, a specific tool, or an Apify Actor. For example: --tools actors,docs,apify/rag-web-browser.
72
72
73
-
For more details visit https://github.com/apify/actors-mcp-server`,
0 commit comments