@apify/actors-mcp-server 0.1.10-beta.0 → 0.1.10
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.
- package/README.md +11 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# Apify Model Context Protocol (MCP) Server
|
|
2
2
|
|
|
3
3
|
[](https://apify.com/apify/actors-mcp-server)
|
|
4
|
+
[](https://smithery.ai/server/@apify/actors-mcp-server)
|
|
4
5
|
|
|
5
6
|
Implementation of an MCP server for all [Apify Actors](https://apify.com/store).
|
|
6
7
|
This server enables interaction with one or more Apify Actors that can be defined in the MCP Server configuration.
|
|
@@ -197,8 +198,9 @@ Alternatively, you can use simple python [client_see.py](https://github.com/apif
|
|
|
197
198
|
```
|
|
198
199
|
|
|
199
200
|
## ⾕ MCP Server at a local host
|
|
200
|
-
|
|
201
|
+
``
|
|
201
202
|
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).
|
|
203
|
+
You can also use [Smithery](https://smithery.ai/server/@apify/actors-mcp-server) to install the server automatically.
|
|
202
204
|
|
|
203
205
|
### Prerequisites
|
|
204
206
|
|
|
@@ -291,6 +293,14 @@ To configure Claude Desktop to work with the MCP server, follow these steps. For
|
|
|
291
293
|
Find and analyze instagram profile of the Rock.
|
|
292
294
|
```
|
|
293
295
|
|
|
296
|
+
### Installing via Smithery
|
|
297
|
+
|
|
298
|
+
To install Apify Actors MCP Server for Claude Desktop automatically via [Smithery](https://smithery.ai/server/@apify/actors-mcp-server):
|
|
299
|
+
|
|
300
|
+
```bash
|
|
301
|
+
npx -y @smithery/cli install @apify/actors-mcp-server --client claude
|
|
302
|
+
```
|
|
303
|
+
|
|
294
304
|
#### Stdio clients
|
|
295
305
|
|
|
296
306
|
Create environment file `.env` with the following content:
|