Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions .changeset/inspector-windows-spawn.md

This file was deleted.

2 changes: 1 addition & 1 deletion apps/mcp-starter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@nuxtjs/mcp-toolkit": "^0.17.0",
"@nuxtjs/mcp-toolkit": "^0.17.1",
"nuxt": "^4.4.6",
"zod": "^4.1.13"
},
Expand Down
12 changes: 12 additions & 0 deletions packages/nuxt-mcp-toolkit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @nuxtjs/mcp-toolkit

## 0.17.1

### Patch Changes

- [#261](https://github.com/nuxt-modules/mcp-toolkit/pull/261) [`500c43e`](https://github.com/nuxt-modules/mcp-toolkit/commit/500c43e6ef0befdff47e2c574f8615594c68e47e) Thanks [@HugoRCD](https://github.com/HugoRCD)! - Fix "spawn npx ENOENT" error when launching the MCP Inspector on Windows.

Since the Node.js CVE-2024-27980 mitigation (Node 18.20.2 / 20.12.2), `child_process.spawn` no longer resolves `.cmd`/`.bat` shims on Windows without `shell: true`. This caused the DevTools "Launch Inspector" button to throw `ENOENT` on every Windows machine.

`shell: true` is now passed only when `process.platform === 'win32'`, leaving the default behaviour unchanged on Linux and macOS.

Closes [#259](https://github.com/nuxt-modules/mcp-toolkit/issues/259).

## 0.17.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/nuxt-mcp-toolkit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nuxtjs/mcp-toolkit",
"version": "0.17.0",
"version": "0.17.1",
"description": "Create MCP servers directly in your Nuxt application. Define tools, resources, and prompts with a simple and intuitive API.",
"repository": {
"type": "git",
Expand Down