@aipermission/mcp 0.2.3 → 0.2.6

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
@@ -8,11 +8,11 @@ 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 and Postgres are built-in
12
- connectors that use the same target/profile/action permission model as future
13
- connectors.
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.
14
14
 
15
- ![AIPermission demo: AI installs Uptime Kuma through approval-based SSH access](https://raw.githubusercontent.com/aipermission/aipermission/main/docs/assets/demo/aipermission-demo.gif)
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
 
17
17
  [Watch the demo video](https://github.com/aipermission/aipermission/releases/download/v0.1.0-rc.1/aipermission-demo.mp4) to see an AI assistant install Uptime Kuma on a VPS while the user approves commands and changes the plan mid-run.
18
18
 
@@ -61,7 +61,7 @@ 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, and future
64
+ All integration work goes through connector targets. SSH, Postgres, Redis, RabbitMQ, and future
65
65
  connectors share the same model: target, credential profile, connector action,
66
66
  token action permission, approval, history, and audit.
67
67
 
@@ -70,6 +70,21 @@ For SSH, call `get_connector_actions(target_ref)` to discover actions such as
70
70
  `start_file_download`. SSH `exec` is intended for non-interactive commands. Use
71
71
  the web console for truly interactive work.
72
72
 
73
+ For Postgres, call `get_connector_actions(target_ref)` to discover schema,
74
+ table, and bounded read-only query actions. Postgres targets can connect
75
+ directly from the gateway or over an SSH connector profile when the database is
76
+ reachable only from a remote server.
77
+
78
+ For Redis, call `get_connector_actions(target_ref)` to discover bounded key
79
+ browser actions such as `scan_keys`, `get_key`, `set_string`, `expire_key`, and
80
+ `delete_keys`.
81
+
82
+ For RabbitMQ, call `get_connector_actions(target_ref)` to discover queue
83
+ browser actions such as `overview`, `list_vhosts`, `list_queues`, `get_queue`,
84
+ `list_bindings`, `peek_messages`, and `publish_message`. Message payload
85
+ previews and published payloads can contain secrets or customer data; use short
86
+ reasons and prefer approval-required access until the workflow is trusted.
87
+
73
88
  Connector responses can include `approval_pending` or `running`. Poll
74
89
  `get_connector_action_request(request_id)` until the request reaches a terminal
75
90
  status. MCP tool responses never include file contents, gateway temporary paths,
@@ -46,6 +46,8 @@ Good reasons:
46
46
  Check Docker service state before cleanup.
47
47
  Inspect recent kubelet errors on worker node.
48
48
  List Postgres schemas before a read-only metadata query.
49
+ Peek a RabbitMQ queue after the operator approved payload inspection. Publish
50
+ RabbitMQ messages only when the operator explicitly asked for a write.
49
51
  ```
50
52
 
51
53
  Avoid vague reasons:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aipermission/mcp",
3
- "version": "0.2.3",
3
+ "version": "0.2.6",
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.3",
6
+ "version": "0.2.6",
7
7
  "packages": [
8
8
  {
9
9
  "registryType": "npm",
10
10
  "identifier": "@aipermission/mcp",
11
- "version": "0.2.3",
11
+ "version": "0.2.6",
12
12
  "transport": {
13
13
  "type": "stdio"
14
14
  }