@aipermission/mcp 0.2.12 → 0.2.14

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. If an action grant includes `expires_at`, treat access as temporary and
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
@@ -46,6 +48,7 @@ Good reasons:
46
48
  Check Docker service state before cleanup.
47
49
  Inspect recent kubelet errors on worker node.
48
50
  List Postgres schemas before a read-only metadata query.
51
+ Describe ClickHouse columns before a bounded analytics query.
49
52
  Peek a RabbitMQ queue after the operator approved payload inspection. Publish
50
53
  RabbitMQ messages only when the operator explicitly asked for a write.
51
54
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aipermission/mcp",
3
- "version": "0.2.12",
3
+ "version": "0.2.14",
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.12",
6
+ "version": "0.2.14",
7
7
  "packages": [
8
8
  {
9
9
  "registryType": "npm",
10
10
  "identifier": "@aipermission/mcp",
11
- "version": "0.2.12",
11
+ "version": "0.2.14",
12
12
  "transport": {
13
13
  "type": "stdio"
14
14
  }