@aipermission/mcp 0.2.9 → 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.
- package/README.md +11 -3
- package/package.json +1 -1
- 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
|
|
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
|

|
|
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
|
|
|
@@ -96,6 +96,14 @@ console sessions are scoped to one visible container; arbitrary host-level
|
|
|
96
96
|
Docker commands, prune, removal, and raw Docker command execution are not
|
|
97
97
|
exposed.
|
|
98
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.
|
|
106
|
+
|
|
99
107
|
Connector responses can include `approval_pending` or `running`. Poll
|
|
100
108
|
`get_connector_action_request(request_id)` until the request reaches a terminal
|
|
101
109
|
status. MCP tool responses never include file contents, gateway temporary paths,
|
package/package.json
CHANGED
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.
|
|
6
|
+
"version": "0.2.10",
|
|
7
7
|
"packages": [
|
|
8
8
|
{
|
|
9
9
|
"registryType": "npm",
|
|
10
10
|
"identifier": "@aipermission/mcp",
|
|
11
|
-
"version": "0.2.
|
|
11
|
+
"version": "0.2.10",
|
|
12
12
|
"transport": {
|
|
13
13
|
"type": "stdio"
|
|
14
14
|
}
|