@aipermission/mcp 0.2.8 → 0.2.9

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
@@ -87,12 +87,14 @@ previews and published payloads can contain secrets or customer data; use short
87
87
  reasons and prefer approval-required access until the workflow is trusted.
88
88
 
89
89
  For Docker, call `get_connector_actions(target_ref)` to discover bounded
90
- container actions such as `docker_version`, `list_containers`,
91
- `inspect_container`, `container_logs`, `start_container`, `stop_container`, and
92
- `restart_container`. Docker credential profiles can scope a token to all
93
- containers, selected container names/IDs, or name patterns. The Docker
94
- connector does not expose arbitrary `docker exec`, prune, removal, shell, or raw
95
- Docker command execution.
90
+ actions such as `docker_version`, `list_containers`, `list_images`,
91
+ `list_networks`, `list_volumes`, `inspect_container`, `container_logs`,
92
+ `container_exec`, `start_container`, `stop_container`, and `restart_container`.
93
+ Docker credential profiles can scope a token to all containers, selected
94
+ container names/IDs, or name patterns. `container_exec` and live container
95
+ console sessions are scoped to one visible container; arbitrary host-level
96
+ Docker commands, prune, removal, and raw Docker command execution are not
97
+ exposed.
96
98
 
97
99
  Connector responses can include `approval_pending` or `running`. Poll
98
100
  `get_connector_action_request(request_id)` until the request reaches a terminal
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aipermission/mcp",
3
- "version": "0.2.8",
3
+ "version": "0.2.9",
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.8",
6
+ "version": "0.2.9",
7
7
  "packages": [
8
8
  {
9
9
  "registryType": "npm",
10
10
  "identifier": "@aipermission/mcp",
11
- "version": "0.2.8",
11
+ "version": "0.2.9",
12
12
  "transport": {
13
13
  "type": "stdio"
14
14
  }