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
Copy file name to clipboardExpand all lines: README.md
+7-2Lines changed: 7 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -365,8 +365,13 @@ Upon launching, the Inspector will display a URL that you can access in your bro
365
365
366
366
## ⓘ Limitations and feedback
367
367
368
-
To limit the context size the properties in the `input schema` are pruned and description is truncated to 500 characters.
369
-
Enum fields and titles are truncated to max 50 options.
368
+
The Actor input schema is processed to be compatible with most MCP clients while adhering to [JSON Schema](https://json-schema.org/) standards. The processing includes:
369
+
- **Descriptions** are truncated to 500 characters (as defined in`MAX_DESCRIPTION_LENGTH`).
370
+
- **Enum fields** are truncated to a maximum combined length of 200 characters forall elements (as definedin`ACTOR_ENUM_MAX_LENGTH`).
371
+
- **Required fields** are explicitly marked with a "REQUIRED" prefix in their descriptions for compatibility with frameworks that may not handle JSON schema properly.
372
+
- **Nested properties** are built for special cases like proxy configuration and request list sources to ensure correct input structure.
373
+
- **Array item types** are inferred when not explicitly defined in the schema, using a priority order: explicit typein items > prefill type> default value type> editor type.
374
+
- **Enum values and examples** are added to property descriptions to ensure visibility even if the client doesn't fully support JSON schema.
370
375
371
376
Memory for each Actor is limited to 4GB.
372
377
Free users have an 8GB limit, 128MB needs to be allocated for running `Actors-MCP-Server`.
0 commit comments