@aipermission/mcp 0.2.24 → 0.2.25

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 CHANGED
@@ -122,6 +122,13 @@ sensitive application data, and offset changes can replay or skip records, so
122
122
  keep these actions in Prompt mode unless direct execution is intentional. If a
123
123
  publish has an unknown delivery outcome, inspect before retrying.
124
124
 
125
+ For S3, discover bounded object actions, temporary URL actions, object-version
126
+ controls, and bucket lifecycle actions through `get_connector_actions`. Signed
127
+ URLs are bearer credentials limited to one key and at most one hour. Read the
128
+ current lifecycle policy before changing it: replacement and deletion affect
129
+ the complete policy and are destructive. Keep version deletion and lifecycle
130
+ changes in Prompt unless direct execution is deliberate.
131
+
125
132
  For Docker, call `get_connector_actions(target_ref)` to discover bounded
126
133
  actions such as `docker_version`, `list_containers`, `list_images`,
127
134
  `list_networks`, `list_volumes`, `inspect_container`, `container_logs`,
@@ -203,6 +203,19 @@ prefer this sequence:
203
203
  operator explicitly approved replacement.
204
204
  7. Treat `delete_object` as destructive and ask for explicit confirmation if
205
205
  approval mode does not already provide it.
206
+ 8. Use `presign_download` and `presign_upload` only for one exact object key
207
+ and keep expiry between 60 and 3600 seconds. The returned URL is a temporary
208
+ bearer credential. When an upload result includes `required_headers`, send
209
+ every listed header unchanged; no-overwrite URLs require the signed
210
+ `If-None-Match: *` header.
211
+ 9. Use `list_object_versions` before `restore_object_version` or
212
+ `delete_object_version`. Restoring creates a new current version; deleting
213
+ an exact version or delete marker is permanent.
214
+ 10. Read `get_bucket_lifecycle` before changing retention. The bounded
215
+ `replace_bucket_lifecycle` action replaces every existing rule with one
216
+ explicit rule; `delete_bucket_lifecycle` removes the complete policy.
217
+ 11. Keep lifecycle replacement, lifecycle deletion, and version deletion in
218
+ Prompt unless the operator deliberately trusts that exact workflow.
206
219
 
207
220
  Object content may contain secrets or customer data. Avoid downloading or
208
221
  echoing object contents unless the operator asked for that exact object.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aipermission/mcp",
3
- "version": "0.2.24",
3
+ "version": "0.2.25",
4
4
  "mcpName": "io.github.aipermission/aipermission-mcp",
5
5
  "description": "Local-first MCP bridge for the aipermission gateway.",
6
6
  "license": "AGPL-3.0-only",
package/server.json CHANGED
@@ -3,12 +3,12 @@
3
3
  "name": "io.github.aipermission/aipermission-mcp",
4
4
  "title": "AIPermission",
5
5
  "description": "Local-first MCP bridge for the AIPermission gateway.",
6
- "version": "0.2.24",
6
+ "version": "0.2.25",
7
7
  "packages": [
8
8
  {
9
9
  "registryType": "npm",
10
10
  "identifier": "@aipermission/mcp",
11
- "version": "0.2.24",
11
+ "version": "0.2.25",
12
12
  "transport": {
13
13
  "type": "stdio"
14
14
  }