@aipermission/mcp 0.2.8 → 0.2.10

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 +19 -9
  2. package/package.json +1 -1
  3. package/server.json +2 -2
package/README.md CHANGED
@@ -9,8 +9,8 @@ credentials, or other connector secrets.
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
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.
12
+ Docker, and Kubernetes are built-in connectors that use the same
13
+ target/profile/action 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
 
@@ -62,7 +62,7 @@ The generated MCP config contains a bearer token. Keep it private. For project-l
62
62
  - `get_connector_action_request`
63
63
 
64
64
  All integration work goes through connector targets. SSH, Postgres, Redis,
65
- RabbitMQ, Docker, and future connectors share the same model: target,
65
+ RabbitMQ, Docker, Kubernetes, and future connectors share the same model: target,
66
66
  credential profile, connector action, token action permission, approval,
67
67
  history, and audit.
68
68
 
@@ -87,12 +87,22 @@ 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.
98
+
99
+ For Kubernetes, call `get_connector_actions(target_ref)` to discover bounded
100
+ actions such as `cluster_version`, `list_namespaces`, `list_workloads`,
101
+ `list_pods`, `list_services`, `list_ingress`, `list_nodes`, `list_events`,
102
+ `describe_resource`, `get_logs`, and `rollout_restart`. Kubernetes actions run
103
+ through an SSH transport profile and can be scoped by namespace visibility. Raw
104
+ `kubectl`, manifest apply/edit/delete, pod deletion, scaling, and Secret value
105
+ browsing are not exposed.
96
106
 
97
107
  Connector responses can include `approval_pending` or `running`. Poll
98
108
  `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.10",
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.10",
7
7
  "packages": [
8
8
  {
9
9
  "registryType": "npm",
10
10
  "identifier": "@aipermission/mcp",
11
- "version": "0.2.8",
11
+ "version": "0.2.10",
12
12
  "transport": {
13
13
  "type": "stdio"
14
14
  }