@aipermission/mcp 0.2.12 → 0.2.13
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
|
@@ -66,6 +66,12 @@ 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
|
|
|
69
|
+
Projects group connector targets for one local developer. Each MCP token has an
|
|
70
|
+
enabled project scope in addition to its target/profile/action grants. Targets
|
|
71
|
+
from disabled projects are omitted from discovery and rejected on direct calls;
|
|
72
|
+
their saved action grants are preserved for later re-enablement. Projects are
|
|
73
|
+
not multi-user or hosted RBAC.
|
|
74
|
+
|
|
69
75
|
For SSH, call `get_connector_actions(target_ref)` to discover actions such as
|
|
70
76
|
`exec`, `read_console`, `restart_console_session`, `browse_remote_files`, and
|
|
71
77
|
`start_file_download`. SSH `exec` is intended for non-interactive commands. Use
|
|
@@ -28,7 +28,9 @@ Before acting:
|
|
|
28
28
|
5. Call `call_connector_action(target_ref, action_name, input, reason)`.
|
|
29
29
|
|
|
30
30
|
If no target is visible, say that the current token has no accessible connector
|
|
31
|
-
targets.
|
|
31
|
+
targets. A target can be absent because its project is disabled for the token or
|
|
32
|
+
because no effective action grant exists; do not claim that it was deleted or
|
|
33
|
+
is offline. If an action grant includes `expires_at`, treat access as temporary and
|
|
32
34
|
finish within that maintenance window or ask the operator to extend access.
|
|
33
35
|
|
|
34
36
|
Target visibility is permission-scoped, not a live health check. A visible SSH
|
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.13",
|
|
7
7
|
"packages": [
|
|
8
8
|
{
|
|
9
9
|
"registryType": "npm",
|
|
10
10
|
"identifier": "@aipermission/mcp",
|
|
11
|
-
"version": "0.2.
|
|
11
|
+
"version": "0.2.13",
|
|
12
12
|
"transport": {
|
|
13
13
|
"type": "stdio"
|
|
14
14
|
}
|