An MCP server that exposes Nuxt UI components to AI agents.
- Public repo: https://github.com/Riyenz/nuxt-ui-mcp-server
- Local dev
npm install
npm run build
node dist/cli.js --help
node dist/cli.js
- Test as tarball (pre-publish)
npm pack
npx ./riyenz-nuxt-ui-mcp-server-*.tgz --help
- Cursor
.cursorrules
or global~/.cursor/mcp.json
:
{
"mcpServers": {
"nuxt-ui": {
"command": "npx",
"args": ["@riyenz/nuxt-ui-mcp-server"]
}
}
}
- Claude Desktop
~/.config/Claude/claude_desktop_config.json
:
{
"mcpServers": {
"nuxt-ui": {
"command": "npx",
"args": ["@riyenz/nuxt-ui-mcp-server"]
}
}
}
- list_components
- get_component
Inspired by shadcn-ui-mcp-server
patterns. See reference: https://github.com/Jpisnice/shadcn-ui-mcp-server
.