@apify/actors-mcp-server 0.1.9 → 0.1.10-beta.0

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 +15 -6
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -6,7 +6,7 @@ Implementation of an MCP server for all [Apify Actors](https://apify.com/store).
6
6
  This server enables interaction with one or more Apify Actors that can be defined in the MCP Server configuration.
7
7
 
8
8
  The server can be used in several ways:
9
- - **🇦 MCP Server Actor** – HTTP server accessible via Server-Sent Events (SSE).
9
+ - **🇦 [MCP Server Actor](https://apify.com/apify/actors-mcp-server)** – HTTP server accessible via Server-Sent Events (SSE).
10
10
  - **⾕ MCP Server Stdio** – Local server available via standard input/output (stdio).
11
11
  - **💬 [Tester MCP Client](https://apify.com/jiri.spilka/tester-mcp-client)** – Chat-like UI for interacting with the MCP server.
12
12
 
@@ -43,20 +43,20 @@ The following image shows how the Apify MCP server interacts with the Apify plat
43
43
  ![Actors-MCP-server](https://raw.githubusercontent.com/apify/actors-mcp-server/refs/heads/master/docs/actors-mcp-server.png)
44
44
 
45
45
  In the future, we plan to load Actors dynamically and provide Apify's dataset and key-value store as resources.
46
- See the [Roadmap](#-roadmap-january-2025) for more details.
46
+ See the [Roadmap](#-roadmap-march-2025) for more details.
47
47
 
48
48
  # 🔄 What is the Model Context Protocol?
49
49
 
50
50
  The Model Context Protocol (MCP) allows AI applications (and AI agents), such as Claude Desktop, to connect to external tools and data sources.
51
51
  MCP is an open protocol that enables secure, controlled interactions between AI applications, AI Agents, and local or remote resources.
52
52
 
53
- For more information, see the [Model Context Protocol](https://modelcontextprotocol.org/) website.
53
+ For more information, see the [Model Context Protocol](https://modelcontextprotocol.org/) website or blogpost [What is MCP and why does it matter?](https://blog.apify.com/what-is-model-context-protocol/).
54
54
 
55
55
  # 🤖 How is Actors MCP Server related to AI Agents?
56
56
 
57
57
  The Apify MCP Server exposes Apify's Actors through the MCP protocol, allowing AI Agents or frameworks that implement the MCP protocol to access all Apify Actors as tools for data extraction, web searching, and other tasks.
58
58
 
59
- To learn more, check out the blog post: [What are AI Agents?](https://blog.apify.com/what-are-ai-agents/)
59
+ To learn more, check out the blog post: [What are AI Agents?](https://blog.apify.com/what-are-ai-agents/) and Apify's [AI Agent collection](https://apify.com/store/collections/ai_agents).
60
60
 
61
61
  # 🧱 Components
62
62
 
@@ -140,7 +140,7 @@ Once the server is running, you can interact with Server-Sent Events (SSE) to se
140
140
  The easiest way is to use [Tester MCP Client](https://apify.com/jiri.spilka/tester-mcp-client) on Apify.
141
141
 
142
142
  Other clients do not support SSE yet, but this will likely change.
143
- Please verify if MCP clients such ass [Superinference.ai](https://superinterface.ai/) or [LibreChat](https://www.librechat.ai/) support SSE with custom headers.
143
+ Please verify if MCP clients such as [Superinference.ai](https://superinterface.ai/) or [LibreChat](https://www.librechat.ai/) support SSE with custom headers.
144
144
  ([Claude Desktop](https://claude.ai/download) does not support SSE transport yet, see [Claude Desktop Configuration](#claude-desktop) section for more details).
145
145
 
146
146
  In the client settings you need to provide server configuration:
@@ -198,6 +198,8 @@ Alternatively, you can use simple python [client_see.py](https://github.com/apif
198
198
 
199
199
  ## ⾕ MCP Server at a local host
200
200
 
201
+ You can run the Apify MCP Server on your local machine by configuring it with Claude Desktop or any other [MCP clients](https://modelcontextprotocol.io/clients).
202
+
201
203
  ### Prerequisites
202
204
 
203
205
  - MacOS or Windows
@@ -369,7 +371,14 @@ Free users have an 8GB limit, 128MB needs to be allocated for running `Actors-MC
369
371
 
370
372
  If you need other features or have any feedback, please [submit an issue](https://console.apify.com/actors/1lSvMAaRcadrM1Vgv/issues) in Apify Console to let us know.
371
373
 
372
- # 🚀 Roadmap (January 2025)
374
+ # 🚀 Roadmap (March 2025)
373
375
 
374
376
  - Add Apify's dataset and key-value store as resources.
375
377
  - Add tools such as Actor logs and Actor runs for debugging.
378
+
379
+ # References
380
+
381
+ - [Model Context Protocol](https://modelcontextprotocol.org/)
382
+ - [What are AI Agents?](https://blog.apify.com/what-are-ai-agents/)
383
+ - [What is MCP and why does it matter?](https://blog.apify.com/what-is-model-context-protocol/)
384
+ - [Tester MCP Client](https://apify.com/jiri.spilka/tester-mcp-client)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apify/actors-mcp-server",
3
- "version": "0.1.9",
3
+ "version": "0.1.10-beta.0",
4
4
  "type": "module",
5
5
  "description": "Model Context Protocol Server for Apify Actors",
6
6
  "engines": {