mcp-config-manager 1.0.5 → 1.0.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/cli.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-config-manager",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "Simple CLI and web UI to manage MCP configs across multiple AI clients",
5
5
  "main": "src/cli.js",
6
6
  "bin": {
package/src/cli.js CHANGED
@@ -8,7 +8,7 @@ const manager = new MCPConfigManager();
8
8
  program
9
9
  .name('mcp-config-manager')
10
10
  .description('CLI to manage MCP configurations across different AI clients')
11
- .version('1.0.0');
11
+ .version('1.0.6', '-v, --version', 'output the current version');
12
12
 
13
13
  program
14
14
  .command('list')