@apify/actors-mcp-server 0.1.20 → 0.1.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +4 -24
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -7,11 +7,11 @@ Implementation of an MCP server for all [Apify Actors](https://apify.com/store).
7
7
  This server enables interaction with one or more Apify Actors that can be defined in the MCP Server configuration.
8
8
 
9
9
  The server can be used in two ways:
10
- - **🇦 [MCP Server Actor](https://apify.com/apify/actors-mcp-server)** – HTTP server accessible via Server-Sent Events (SSE).
11
- - **⾕ MCP Server Stdio** – Local server available via standard input/output (stdio).
10
+ - **🇦 [MCP Server Actor](https://apify.com/apify/actors-mcp-server)** – HTTP server accessible via Server-Sent Events (SSE), see [guide](#-mcp-server-actor)
11
+ - **⾕ MCP Server Stdio** – Local server available via standard input/output (stdio), see [guide](#-mcp-server-at-a-local-host)
12
12
 
13
13
 
14
- If can also interact with the MCP server using chat-like UI with 💬 [Tester MCP Client](https://apify.com/jiri.spilka/tester-mcp-client)
14
+ It can also interact with the MCP server using chat-like UI with 💬 [Tester MCP Client](https://apify.com/jiri.spilka/tester-mcp-client)
15
15
 
16
16
  # 🎯 What does Apify MCP server do?
17
17
 
@@ -211,26 +211,6 @@ You can also use [Smithery](https://smithery.ai/server/@apify/actors-mcp-server)
211
211
  - [Node.js](https://nodejs.org/en) (v18 or higher)
212
212
  - [Apify API Token](https://docs.apify.com/platform/integrations/api#api-token) (`APIFY_TOKEN`)
213
213
 
214
- ### Install
215
-
216
- First, clone the repository using the following command:
217
-
218
- ```bash
219
- git clone git@github.com:apify/actor-mcp-server.git
220
- ```
221
- Navigate to the project directory and install the required dependencies:
222
-
223
- ```bash
224
- cd actor-mcp-server
225
- npm install
226
- ```
227
-
228
- Before running the server, you need to build the project:
229
-
230
- ```bash
231
- npm run build
232
- ```
233
-
234
214
  #### Claude Desktop
235
215
 
236
216
  To configure Claude Desktop to work with the MCP server, follow these steps. For a detailed guide, refer to the [Claude Desktop Users Guide](https://modelcontextprotocol.io/quickstart/user).
@@ -295,7 +275,7 @@ To configure Claude Desktop to work with the MCP server, follow these steps. For
295
275
  Find and analyze instagram profile of the Rock.
296
276
  ```
297
277
 
298
- #### Debugging NPM package @apify/actors-mcp-server with modelcontextprotocol/inspector
278
+ #### Debugging NPM package @apify/actors-mcp-server with @modelcontextprotocol/inspector
299
279
 
300
280
  To debug the server, use the [MCP Inspector](https://github.com/modelcontextprotocol/inspector) tool:
301
281
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apify/actors-mcp-server",
3
- "version": "0.1.20",
3
+ "version": "0.1.21",
4
4
  "type": "module",
5
5
  "description": "Model Context Protocol Server for Apify Actors",
6
6
  "engines": {