@1claw/mcp 0.19.1 → 0.20.0

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.
Files changed (2) hide show
  1. package/README.md +2 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -52,6 +52,8 @@ pnpm run build
52
52
  | `delete_secret` | Soft-delete a secret at a path |
53
53
  | `describe_secret` | Get metadata without fetching the value |
54
54
  | `rotate_and_store` | Store a new value for an existing secret and return the version |
55
+ | `rotate_generate` | Server-side secret rotation with generated value (length, charset configurable) |
56
+ | `list_versions` | List all versions of a secret (version numbers, dates, disabled status) |
55
57
  | `get_env_bundle` | Fetch an env_bundle secret and parse it as KEY=VALUE JSON |
56
58
  | `create_vault` | Create a new vault (auto-shared with the agent's human creator) |
57
59
  | `list_vaults` | List all vaults the agent can access (own + shared) |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@1claw/mcp",
3
- "version": "0.19.1",
3
+ "version": "0.20.0",
4
4
  "description": "MCP server for the 1claw secrets vault — lets AI agents fetch, store, and manage secrets at runtime",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",