@aipermission/mcp 0.2.2 → 0.2.4

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,9 +8,9 @@ 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, and Redis are
12
+ built-in connectors that use the same target/profile/action permission model
13
+ as future connectors.
14
14
 
15
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)
16
16
 
@@ -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, 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,10 @@ 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 Redis, call `get_connector_actions(target_ref)` to discover bounded key
74
+ browser actions such as `scan_keys`, `get_key`, `set_string`, `expire_key`, and
75
+ `delete_keys`.
76
+
73
77
  Connector responses can include `approval_pending` or `running`. Poll
74
78
  `get_connector_action_request(request_id)` until the request reaches a terminal
75
79
  status. MCP tool responses never include file contents, gateway temporary paths,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aipermission/mcp",
3
- "version": "0.2.2",
3
+ "version": "0.2.4",
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.2",
6
+ "version": "0.2.4",
7
7
  "packages": [
8
8
  {
9
9
  "registryType": "npm",
10
10
  "identifier": "@aipermission/mcp",
11
- "version": "0.2.2",
11
+ "version": "0.2.4",
12
12
  "transport": {
13
13
  "type": "stdio"
14
14
  }