@aipermission/mcp 0.2.7 → 0.2.8

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.
Files changed (3) hide show
  1. package/README.md +15 -6
  2. package/package.json +1 -1
  3. package/server.json +2 -2
package/README.md CHANGED
@@ -8,9 +8,9 @@ credentials, or other connector secrets.
8
8
 
9
9
  The gateway is intentionally local-only. Run it on the developer machine and
10
10
  keep the URL on `localhost`; remote systems are connector targets, not places
11
- to host the gateway for LAN or internet users. SSH, Postgres, Redis, and RabbitMQ are
12
- built-in connectors that use the same target/profile/action permission model
13
- as future connectors.
11
+ to host the gateway for LAN or internet users. SSH, Postgres, Redis, RabbitMQ,
12
+ and Docker are built-in connectors that use the same target/profile/action
13
+ permission model as future connectors.
14
14
 
15
15
  ![AIPermission demo: AI operates through approval-based connector access](https://raw.githubusercontent.com/aipermission/aipermission/main/docs/assets/demo/aipermission-demo.gif)
16
16
 
@@ -61,9 +61,10 @@ The generated MCP config contains a bearer token. Keep it private. For project-l
61
61
  - `call_connector_action`
62
62
  - `get_connector_action_request`
63
63
 
64
- All integration work goes through connector targets. SSH, Postgres, Redis, RabbitMQ, and future
65
- connectors share the same model: target, credential profile, connector action,
66
- token action permission, approval, history, and audit.
64
+ All integration work goes through connector targets. SSH, Postgres, Redis,
65
+ RabbitMQ, Docker, and future connectors share the same model: target,
66
+ credential profile, connector action, token action permission, approval,
67
+ history, and audit.
67
68
 
68
69
  For SSH, call `get_connector_actions(target_ref)` to discover actions such as
69
70
  `exec`, `read_console`, `restart_console_session`, `browse_remote_files`, and
@@ -85,6 +86,14 @@ browser actions such as `overview`, `list_vhosts`, `list_queues`, `get_queue`,
85
86
  previews and published payloads can contain secrets or customer data; use short
86
87
  reasons and prefer approval-required access until the workflow is trusted.
87
88
 
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.
96
+
88
97
  Connector responses can include `approval_pending` or `running`. Poll
89
98
  `get_connector_action_request(request_id)` until the request reaches a terminal
90
99
  status. MCP tool responses never include file contents, gateway temporary paths,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aipermission/mcp",
3
- "version": "0.2.7",
3
+ "version": "0.2.8",
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.7",
6
+ "version": "0.2.8",
7
7
  "packages": [
8
8
  {
9
9
  "registryType": "npm",
10
10
  "identifier": "@aipermission/mcp",
11
- "version": "0.2.7",
11
+ "version": "0.2.8",
12
12
  "transport": {
13
13
  "type": "stdio"
14
14
  }