@nuxt/docs-nightly 4.3.0-29435909.323f27bc → 4.3.0-29436286.4f0cb865
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/3.guide/3.ai/1.mcp.md
CHANGED
|
@@ -88,6 +88,28 @@ Add the server using the CLI command:
|
|
|
88
88
|
claude mcp add --transport http nuxt-remote https://nuxt.com/mcp
|
|
89
89
|
```
|
|
90
90
|
|
|
91
|
+
### Claude Desktop
|
|
92
|
+
|
|
93
|
+
#### Setup Instructions
|
|
94
|
+
|
|
95
|
+
1. Open Claude Desktop and navigate to "Settings" > "Developer".
|
|
96
|
+
2. Click on "Edit Config". This will open the local Claude directory.
|
|
97
|
+
3. Modify the `claude_desktop_config.json` file with your custom MCP server configuration.
|
|
98
|
+
```json [claude_desktop_config.json]
|
|
99
|
+
{
|
|
100
|
+
"mcpServers": {
|
|
101
|
+
"nuxt": {
|
|
102
|
+
"command": "npx",
|
|
103
|
+
"args": [
|
|
104
|
+
"mcp-remote",
|
|
105
|
+
"https://nuxt.com/mcp"
|
|
106
|
+
]
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
```
|
|
111
|
+
4. Restart Claude Desktop app. The Nuxt MCP server should now be registered.
|
|
112
|
+
|
|
91
113
|
### Cursor
|
|
92
114
|
|
|
93
115
|
Click the button below to install the Nuxt MCP server directly in Cursor:
|