Skip to content
Merged
Changes from all 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
28 changes: 16 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -208,31 +208,35 @@ Configure Claude Desktop to recognize the MCP server.
- On macOS: `~/Library/Application\ Support/Claude/claude_desktop_config.json`
- On Windows: `%APPDATA%/Claude/claude_desktop_config.json`

```text
"mcpServers": {
"actors-mcp-server": {
"command": "npx",
"args": ["-y", "@apify/actors-mcp-server"]
"env": {
"APIFY_TOKEN": "your-apify-token"
}
}
```json
{
"mcpServers": {
"actors-mcp-server": {
"command": "npx",
"args": ["-y", "@apify/actors-mcp-server"],
"env": {
"APIFY_TOKEN": "your-apify-token"
}
}
}
}
```
Alternatively, you can use the following command to select one or more Apify Actors:
```text
```json
{
"mcpServers": {
"actors-mcp-server": {
"command": "npx",
"args": [
"-y", "@apify/actors-mcp-serves",
"--actors", "lukaskrivka/google-maps-with-contact-details,apify/instagram-scraper"
]
],
"env": {
"APIFY_TOKEN": "your-apify-token"
}
}
}
}
```

2. Restart Claude Desktop
Expand Down Expand Up @@ -314,7 +318,7 @@ npm run build
You can launch the MCP Inspector via [`npm`](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm) with this command:

```bash
npx @modelcontextprotocol/inspector node @apify/actors-mcp-server --env APIFY_TOKEN=your-apify-token
npx @modelcontextprotocol/inspector node ./dist/index.js
```

Upon launching, the Inspector will display a URL that you can access in your browser to begin debugging.
Expand Down
Loading