portals-mcp 1.3.0-beta.0 → 1.3.1
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 +1 -0
- package/dist/resources/index/effects.json +703 -699
- package/dist/resources/index/items.json +393 -393
- package/dist/resources/index/triggers.json +217 -210
- package/dist/resources/logic/js-use-effector.md +29 -4
- package/dist/resources/python/README.md +61 -50
- package/dist/resources/python/lib/portals_core.py +1122 -1093
- package/dist/resources/python/lib/portals_effects.py +1680 -1675
- package/dist/resources/python/lib/portals_key_input.py +284 -0
- package/dist/resources/python/lib/portals_ops.py +60 -13
- package/dist/resources/python/tools/apply_ops.py +366 -365
- package/dist/resources/python/tools/simulate_key_input.py +80 -0
- package/dist/resources/python/tools/validate_room.py +30 -0
- package/dist/resources/ref/items/cube.json +76 -73
- package/dist/resources/ref/items/spawn.json +51 -50
- package/dist/resources/ref/items/spotlight.json +63 -51
- package/dist/resources/ref/systems/parent-child.json +52 -43
- package/dist/resources/reference/api-cheatsheet.md +216 -216
- package/dist/resources/reference/interactions.md +865 -854
- package/dist/resources/reference/items/building.md +277 -265
- package/dist/resources/reference/items/lighting.md +95 -80
- package/dist/tools.d.ts.map +1 -1
- package/dist/tools.js +86 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -52,6 +52,7 @@ npx portals-mcp@latest
|
|
|
52
52
|
| `duplicate_room` | Clone a room with all data |
|
|
53
53
|
| `get_room_data` | Download room snapshot to temp JSON |
|
|
54
54
|
| `inspect_room_data` | Summarize room-data counts, item types, variables, triggers/actions, and warnings without dumping full JSON |
|
|
55
|
+
| `simulate_key_input` | Audit and simulate `OnKeyPressedEvent` / `OnKeyReleasedEvent` mappings against a snapshot |
|
|
55
56
|
| `query_room` | Query room data for specific items, logic, or structure |
|
|
56
57
|
| `update_room_settings` | Modify name, description, image, privacy, loading screens |
|
|
57
58
|
|