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:
0 commit comments