osv-ui-mcp 1.0.1 → 1.0.2

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/index.js +2 -2
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -247,10 +247,10 @@ async function handleOpenDashboard({ path: dir = '.', port }) {
247
247
  );
248
248
  }
249
249
 
250
- // Spawn osv-ui detached
250
+ // Spawn osv-ui detached with discovery enabled
251
251
  const child = spawn(
252
252
  process.execPath,
253
- [osvUiBin, absDir, `--port=${assignedPort}`, '--no-open'],
253
+ [osvUiBin, '-d', absDir, `--port=${assignedPort}`, '--no-open'],
254
254
  { detached: true, stdio: 'ignore' }
255
255
  );
256
256
  child.unref();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "osv-ui-mcp",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "MCP server for osv-ui — scan projects for CVEs, open visual dashboard, apply fixes with human confirmation",
5
5
  "type": "module",
6
6
  "bin": {