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
-[Visual Studio Code](https://code.visualstudio.com/) (Stdio and SSE support)
30
31
-[LibreChat](https://www.librechat.ai/) (stdio and SSE support (yet without Authorization header))
31
32
-[Apify Tester MCP Client](https://apify.com/jiri.spilka/tester-mcp-client) (SSE support with Authorization headers)
32
33
- other clients at [https://modelcontextprotocol.io/clients](https://modelcontextprotocol.io/clients)
@@ -275,6 +276,63 @@ To configure Claude Desktop to work with the MCP server, follow these steps. For
275
276
Find and analyze instagram profile of the Rock.
276
277
```
277
278
279
+
#### VS Code
280
+
281
+
For one-click installation, click one of the install buttons below:
282
+
283
+
[](https://insiders.vscode.dev/redirect/mcp/install?name=actors-mcp-server&config=%7B%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22%40apify%2Factors-mcp-server%22%5D%2C%22env%22%3A%7B%22APIFY_TOKEN%22%3A%22%24%7Binput%3Aapify_token%7D%22%7D%7D&inputs=%5B%7B%22type%22%3A%22promptString%22%2C%22id%22%3A%22apify_token%22%2C%22description%22%3A%22Apify+API+Token%22%2C%22password%22%3Atrue%7D%5D) [](https://insiders.vscode.dev/redirect/mcp/install?name=actors-mcp-server&config=%7B%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22%40apify%2Factors-mcp-server%22%5D%2C%22env%22%3A%7B%22APIFY_TOKEN%22%3A%22%24%7Binput%3Aapify_token%7D%22%7D%7D&inputs=%5B%7B%22type%22%3A%22promptString%22%2C%22id%22%3A%22apify_token%22%2C%22description%22%3A%22Apify+API+Token%22%2C%22password%22%3Atrue%7D%5D&quality=insiders)
284
+
285
+
##### Manual installation
286
+
287
+
You can manually install the Apify MCP Server in VS Code. First, click one of the install buttons at the top of this section for a one-click installation.
288
+
289
+
Alternatively, add the following JSON block to your User Settings (JSON) file in VS Code. You can do this by pressing `Ctrl + Shift + P` and typing `Preferences: Open User Settings (JSON)`.
290
+
291
+
```json
292
+
{
293
+
"mcp": {
294
+
"inputs": [
295
+
{
296
+
"type": "promptString",
297
+
"id": "apify_token",
298
+
"description": "Apify API Token",
299
+
"password": true
300
+
}
301
+
],
302
+
"servers": {
303
+
"actors-mcp-server": {
304
+
"command": "npx",
305
+
"args": ["-y", "@apify/actors-mcp-server"],
306
+
"env": {
307
+
"APIFY_TOKEN": "${input:apify_token}"
308
+
}
309
+
}
310
+
}
311
+
}
312
+
}
313
+
```
314
+
315
+
Optionally, you can add it to a file called `.vscode/mcp.json` in your workspace - just omit the top-level `mcp {}` key. This will allow you to share the configuration with others.
316
+
317
+
If you want to specify which Actors to load, you can add the `--actors` argument:
#### Debugging NPM package @apify/actors-mcp-server with @modelcontextprotocol/inspector
279
337
280
338
To debug the server, use the [MCP Inspector](https://github.com/modelcontextprotocol/inspector) tool:
@@ -365,8 +423,13 @@ Upon launching, the Inspector will display a URL that you can access in your bro
365
423
366
424
## ⓘ Limitations and feedback
367
425
368
-
To limit the context size the properties in the `input schema` are pruned and description is truncated to 500 characters.
369
-
Enum fields and titles are truncated to max 50 options.
426
+
The Actor input schema is processed to be compatible with most MCP clients while adhering to [JSON Schema](https://json-schema.org/) standards. The processing includes:
427
+
- **Descriptions** are truncated to 500 characters (as defined in`MAX_DESCRIPTION_LENGTH`).
428
+
- **Enum fields** are truncated to a maximum combined length of 200 characters forall elements (as definedin`ACTOR_ENUM_MAX_LENGTH`).
429
+
- **Required fields** are explicitly marked with a "REQUIRED" prefix in their descriptions for compatibility with frameworks that may not handle JSON schema properly.
430
+
- **Nested properties** are built for special cases like proxy configuration and request list sources to ensure correct input structure.
431
+
- **Array item types** are inferred when not explicitly defined in the schema, using a priority order: explicit typein items > prefill type> default value type> editor type.
432
+
- **Enum values and examples** are added to property descriptions to ensure visibility even if the client doesn't fully support JSON schema.
370
433
371
434
Memory for each Actor is limited to 4GB.
372
435
Free users have an 8GB limit, 128MB needs to be allocated for running `Actors-MCP-Server`.
0 commit comments