@mcpinv/cli 0.1.4 → 0.1.5

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/dist/index.js CHANGED
@@ -10,7 +10,7 @@ import { migrateCommand } from './commands/migrate.js';
10
10
  program
11
11
  .name('mcpinv')
12
12
  .description('Install, run and host MCP servers')
13
- .version('0.1.2');
13
+ .version('0.1.4');
14
14
  program.addCommand(searchCommand());
15
15
  program.addCommand(installCommand());
16
16
  program.addCommand(removeCommand());
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mcpinv/cli",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "Install, run and host MCP servers — invoke anything",
5
5
  "type": "module",
6
6
  "bin": {
package/src/index.ts CHANGED
@@ -11,7 +11,7 @@ import { migrateCommand } from './commands/migrate.js'
11
11
  program
12
12
  .name('mcpinv')
13
13
  .description('Install, run and host MCP servers')
14
- .version('0.1.2')
14
+ .version('0.1.4')
15
15
 
16
16
  program.addCommand(searchCommand())
17
17
  program.addCommand(installCommand())