@@ -83,12 +83,12 @@ The Actor runs in [**Standby mode**](https://docs.apify.com/platform/actors/runn
8383Start server with default Actors. To use the Apify MCP Server with set of default Actors,
8484send an HTTP GET request with your [ Apify API token] ( https://console.apify.com/settings/integrations ) to the following URL.
8585```
86- https://mcp-server.apify.actor?token=<APIFY_API_TOKEN >
86+ https://actors- mcp-server.apify.actor?token=<APIFY_TOKEN >
8787```
8888It is also possible to start MCP server with a different set of tools by providing a list of Actor names in the ` actors ` query parameter.
8989Provide a comma-separated list of Actors in the ` actors ` query parameter:
9090```
91- https://mcp-server.apify.actor?token=<APIFY_API_TOKEN >&actors=junglee/free-amazon-product-scraper,lukaskrivka/google-maps-with-contact-details
91+ https://actors- mcp-server.apify.actor?token=<APIFY_TOKEN >&actors=junglee/free-amazon-product-scraper,lukaskrivka/google-maps-with-contact-details
9292```
9393Find list of all available Actors in the [ Apify Store] ( https://apify.com/store ) .
9494
@@ -104,9 +104,9 @@ In the client settings you need to provide server configuration:
104104 "mcpServers" : {
105105 "apify" : {
106106 "type" : " sse" ,
107- "url" : " https://mcp-server.apify.actor/sse" ,
107+ "url" : " https://actors- mcp-server.apify.actor/sse" ,
108108 "env" : {
109- "APIFY_API_TOKEN " : " your-apify-api -token"
109+ "APIFY_TOKEN " : " your-apify-token"
110110 }
111111 }
112112 }
@@ -116,7 +116,7 @@ Alternatively, you can use simple python [client_see.py](https://github.com/apif
116116
1171171 . Initiate Server-Sent-Events (SSE) by sending a GET request to the following URL:
118118 ```
119- curl https://mcp-server.apify.actor/sse?token=<APIFY_API_TOKEN >
119+ curl https://actors- mcp-server.apify.actor/sse?token=<APIFY_TOKEN >
120120 ```
121121 The server will respond with a `sessionId`, which you can use to send messages to the server:
122122 ```shell
@@ -126,7 +126,7 @@ Alternatively, you can use simple python [client_see.py](https://github.com/apif
126126
1271272. Send a message to the server by making a POST request with the `sessionId`:
128128 ```shell
129- curl -X POST "https://mcp-server.apify.actor?token=<APIFY_API_TOKEN >&session_id=a1b" -H "Content-Type: application/json" -d '{
129+ curl -X POST "https://actors- mcp-server.apify.actor?token=<APIFY_TOKEN >&session_id=a1b" -H "Content-Type: application/json" -d '{
130130 "jsonrpc": "2.0",
131131 "id": 1,
132132 "method": "tools/call",
@@ -158,7 +158,7 @@ Alternatively, you can use simple python [client_see.py](https://github.com/apif
158158- MacOS or Windows
159159- The latest version of Claude Desktop must be installed (or another MCP client)
160160- [Node.js](https://nodejs.org/en) (v18 or higher)
161- - [Apify API Token](https://docs.apify.com/platform/integrations/api#api-token) (`APIFY_API_TOKEN `)
161+ - [Apify API Token](https://docs.apify.com/platform/integrations/api#api-token) (`APIFY_TOKEN `)
162162
163163### Install
164164
@@ -198,7 +198,7 @@ Configure Claude Desktop to recognize the MCP server.
198198 "/path/to/actor-mcp-server/dist/index.js"
199199 ]
200200 "env": {
201- "APIFY_API_TOKEN ": "your-apify-api -token"
201+ "APIFY_TOKEN ": "your-apify-token"
202202 }
203203 }
204204 }
@@ -214,7 +214,7 @@ Configure Claude Desktop to recognize the MCP server.
214214 "lukaskrivka/google-maps-with-contact-details,apify/instagram-scraper"
215215 ]
216216 "env": {
217- "APIFY_API_TOKEN ": "your-apify-api -token"
217+ "APIFY_TOKEN ": "your-apify-token"
218218 }
219219 }
220220 }
@@ -239,7 +239,7 @@ Configure Claude Desktop to recognize the MCP server.
239239
240240Create environment file `.env` with the following content:
241241```text
242- APIFY_API_TOKEN =your-apify-api -token
242+ APIFY_TOKEN =your-apify-token
243243# ANTHROPIC_API_KEY is only required when you want to run examples/clientStdioChat.js
244244ANTHROPIC_API_KEY=your-anthropic-api-token
245245```
@@ -271,7 +271,7 @@ standard input/output (stdio):
271271
272272Create environment file ` .env` with the following content:
273273` ` ` text
274- APIFY_API_TOKEN =your-apify-api -token
274+ APIFY_TOKEN =your-apify-token
275275# ANTHROPIC_API_KEY is only required when you want to run examples/clientStdioChat.js
276276ANTHROPIC_API_KEY=your-anthropic-api-token
277277` ` `
@@ -299,7 +299,7 @@ npm run build
299299You can launch the MCP Inspector via [` npm` ](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm) with this command:
300300
301301` ` ` bash
302- npx @modelcontextprotocol/inspector node /path/to/actor-mcp-server/dist/index.js --env APIFY_API_TOKEN =your-apify-api -token
302+ npx @modelcontextprotocol/inspector node /path/to/actor-mcp-server/dist/index.js --env APIFY_TOKEN =your-apify-token
303303` ` `
304304
305305Upon launching, the Inspector will display a URL that you can access in your browser to begin debugging.
0 commit comments