Skip to content

Commit c1439a8

Browse files
authored
Added multiple actors for Streamable/SSE
1 parent a244690 commit c1439a8

File tree

1 file changed

+14
-1
lines changed
  • sources/platform/integrations/ai

1 file changed

+14
-1
lines changed

sources/platform/integrations/ai/mcp.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,19 @@ By default, the main Actors MCP Server starts with a single default [RAG Web Bro
110110
_Tools for adding and removing Actors are enabled by default._
111111
You can disable these tools by setting the parameter `?enableAddingActors=false` in the MCP Server URL, or with the CLI flag `--enable-adding-actors=false` (can also be set in Claude for Desktop config args as `--enable-adding-actors=false`).
112112
Not all MCP client frameworks allow dynamic tool addition at runtime, but Apify’s own tester client does, if adding Actors is enabled.
113-
- _Via config file:_ When using Claude for Desktop, you can specify which Actors should be immediately available by configuring your `mcpServers` settings. Add the Actors as a comma-separated list in the `--actors` parameter, as shown in the example below. This pre-loads your selected tools without requiring discovery during conversations, ideal for workflows with predictable tool needs.
113+
- _Via url:_ If you are using Streamable HTTP or SSE protocol, you could add `actors` query parameter with Actor names separated by comma:
114+
115+
```json
116+
{
117+
"mcpServers": {
118+
"Apify": {
119+
"url": "https://mcp.apify.com/?actors=lukaskrivka/google-maps-with-contact-details,apify/instagram-scraper"
120+
}
121+
}
122+
}
123+
```
124+
125+
- _Via config file:_ For local stdio connection, you can specify which Actors should be immediately available by configuring your json configuration. Add the Actors as a comma-separated list in the `--actors` parameter, as shown in the example below. This pre-loads your selected tools without requiring discovery during conversations, ideal for workflows with predictable tool needs.
114126

115127
```json
116128
{
@@ -129,6 +141,7 @@ By default, the main Actors MCP Server starts with a single default [RAG Web Bro
129141
}
130142
```
131143

144+
132145
In summary, you can start with a broad set (everything open and discoverable) or a narrow set (just what you need) and even expand tools on the fly, giving your agent a lot of flexibility without overwhelming it initially.
133146

134147
## Dynamic Actor tooling

0 commit comments

Comments
 (0)