mcpman 0.2.0 → 0.3.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.
package/README.md CHANGED
@@ -35,6 +35,10 @@ mcpman install @modelcontextprotocol/server-filesystem
35
35
  - **Registry-aware** — resolves packages from npm, Smithery, or GitHub URLs
36
36
  - **Lockfile** — tracks installed servers in `mcpman.lock` for reproducible setups
37
37
  - **Health checks** — verifies runtimes, env vars, and server connectivity with `doctor`
38
+ - **Encrypted secrets** — store API keys in an AES-256 encrypted vault instead of plaintext JSON; auto-loads during install
39
+ - **Config sync** — keep server configs consistent across all your AI clients; `--remove` cleans extras
40
+ - **Security audit** — scan servers for vulnerabilities with trust scoring; `--fix` auto-updates vulnerable packages
41
+ - **Auto-update** — get notified when server updates are available
38
42
  - **Interactive prompts** — guided installation with env var configuration
39
43
  - **No extra daemon** — pure CLI, works anywhere Node ≥ 20 runs
40
44
 
@@ -94,6 +98,61 @@ Scaffold an `mcpman.lock` file in the current directory for project-scoped serve
94
98
  mcpman init
95
99
  ```
96
100
 
101
+ ### `secrets`
102
+
103
+ Manage encrypted secrets for MCP servers (API keys, tokens, etc.).
104
+
105
+ ```sh
106
+ mcpman secrets set my-server OPENAI_API_KEY=sk-...
107
+ mcpman secrets list my-server
108
+ mcpman secrets remove my-server OPENAI_API_KEY
109
+ ```
110
+
111
+ Secrets are stored in `~/.mcpman/vault.enc` using AES-256-CBC encryption with PBKDF2 key derivation. During `install`, vault secrets are auto-loaded to pre-fill env vars, and new credentials can be saved after installation.
112
+
113
+ ### `sync`
114
+
115
+ Sync MCP server configs across all detected AI clients.
116
+
117
+ ```sh
118
+ mcpman sync # sync all servers to all clients
119
+ mcpman sync --dry-run # preview changes without applying
120
+ mcpman sync --source cursor # use Cursor config as source of truth
121
+ mcpman sync --remove # remove servers not in lockfile from clients
122
+ ```
123
+
124
+ **Options:**
125
+ - `--dry-run` — preview changes without applying
126
+ - `--source <client>` — use a specific client config as source of truth
127
+ - `--remove` — remove extra servers from clients that aren't tracked in lockfile
128
+ - `--yes` — skip confirmation prompts
129
+
130
+ ### `audit [server]`
131
+
132
+ Scan installed servers for security vulnerabilities and compute trust scores.
133
+
134
+ ```sh
135
+ mcpman audit # audit all servers
136
+ mcpman audit my-server # audit specific server
137
+ mcpman audit --json # machine-readable output
138
+ mcpman audit --fix # auto-update vulnerable servers
139
+ mcpman audit --fix --yes # auto-update without confirmation
140
+ ```
141
+
142
+ Trust score (0–100) based on: vulnerability count, download velocity, package age, publish frequency, and maintainer signals.
143
+
144
+ The `--fix` flag checks for newer versions of vulnerable npm packages, updates them, and re-scans to verify the fixes.
145
+
146
+ ### `update [server]`
147
+
148
+ Check for and apply updates to installed MCP servers.
149
+
150
+ ```sh
151
+ mcpman update # update all servers
152
+ mcpman update my-server # update specific server
153
+ mcpman update --check # check only, don't apply
154
+ ```
155
+
97
156
  ---
98
157
 
99
158
  ## Comparison
@@ -103,6 +162,11 @@ mcpman init
103
162
  | Multi-client support | All 4 clients | Claude only | Limited |
104
163
  | Lockfile | `mcpman.lock` | None | None |
105
164
  | Health checks | Runtime + env + process | None | None |
165
+ | Encrypted secrets | AES-256 vault | None | None |
166
+ | Config sync | Cross-client + `--remove` | None | None |
167
+ | Security audit | Trust scoring + auto-fix | None | None |
168
+ | CI/CD | GitHub Actions | None | None |
169
+ | Auto-update | Version check + notify | None | None |
106
170
  | Registry sources | npm + Smithery + GitHub | Smithery only | npm only |
107
171
  | Interactive setup | Yes | Partial | No |
108
172
  | Project-scoped | Yes (`init`) | No | No |