You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: Truncate input schema, limit description to 200 characters (#10)
* Handle server readiness probe
* Add Origin/mcp-server to user-agent. Truncate inputSchema description to 200 characters. Limit enums to 50 values.
* Memory for each Actor is limited to 4GB.
Free users have an 8GB limit, 128MB needs to be allocated for running `Actors-MCP-Server`.
Copy file name to clipboardExpand all lines: README.md
+21-4Lines changed: 21 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,8 @@ For example it can:
19
19
- use [Instagram Scraper](https://apify.com/apify/instagram-scraper) to scrape Instagram posts, profiles, places, photos, and comments
20
20
- use [RAG Web Browser](https://apify.com/apify/web-scraper) to search the web, scrape the top N URLs, and return their content
21
21
22
-
To interact with the Apify MCP server, you can use MCP clients such as [Claude Desktop](https://claude.ai/download), [Superinference.ai](https://superinterface.ai/), or [LibreChat](https://www.librechat.ai/).
22
+
23
+
To interact with the Apify MCP server, you can use MCP clients such as [Claude Desktop](https://claude.ai/download), [LibreChat](https://www.librechat.ai/), or other [MCP clients](https://glama.ai/mcp/clients).
23
24
Additionally, you can use simple example clients found in the [examples](https://github.com/apify/actor-mcp-server/tree/main/src/examples) directory.
24
25
25
26
When you have Actors integrated with the MCP server, you can ask:
@@ -29,6 +30,10 @@ When you have Actors integrated with the MCP server, you can ask:
29
30
- "Provide a step-by-step guide on using the Model Context Protocol with source URLs."
30
31
- "What Apify Actors I can use?"
31
32
33
+
The following image shows how the Apify MCP server interacts with the Apify platform and AI clients:
Upon launching, the Inspector will display a URL that you can access in your browser to begin debugging.
308
313
314
+
## ⓘ Limitations and feedback
315
+
316
+
To limit the context size the properties in the `input schema` are pruned and description is truncated to 200 characters.
317
+
Enum fields and titles are truncated to max 50 options.
318
+
319
+
Memory for each Actor is limited to 4GB.
320
+
Free users have an 8GB limit, 128MB needs to be allocated for running `Actors-MCP-Server`.
321
+
322
+
If you need other features or have any feedback, please [submit an issue](https://console.apify.com/actors/3ox4R101TgZz67sLr/issues) in Apify Console to let us know.
323
+
324
+
Are you interested in AI Agents and AI applications?
325
+
Visit the [Model Context Protocol](https://modelcontextprotocol.org/) website and read blog post [What are AI agents?](https://blog.apify.com/what-are-ai-agents/).
326
+
309
327
# 🚀 Roadmap (January 2025)
310
328
311
-
- Document examples for [Superinference.ai](https://superinterface.ai/) and [LibreChat](https://www.librechat.ai/).
329
+
- Document examples for [LibreChat](https://www.librechat.ai/).
312
330
- Provide tools to search for Actors and load them as needed.
313
331
- Add Apify's dataset and key-value store as resources.
314
332
- Add tools such as Actor logs and Actor runs for debugging.
315
-
- Prune Actors input schema to reduce context size.
0 commit comments