Sign In

@nvidia-elements/cli

Package Overview
Dependencies
Maintainers
2
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nvidia-elements/cli

Command-line interface for Elements development and tooling, providing interactive prompts, project scaffolding, and integration with AI assistants via Model Context Protocol.

Source
npmnpm
Version
0.3.0
Version published
Weekly downloads
476
9.17%
Maintainers
2
Weekly downloads
 
Created
Source

@nvidia-elements/cli

The @nvidia-elements/cli is a dual-mode command-line tool for the Elements Design System. It provides interactive CLI commands and a Model Context Protocol (MCP) server for AI assistant integration.

Purpose

This package serves two primary modes:

  • Interactive CLI (nve command) - Command-line interface with interactive prompts for:

    • Component API discovery and search
    • Example template browsing and searching
    • Template linting and validation
    • Project scaffolding and health checks
    • Changelog and version information
    • Design token access
    • Icon name lookup
    • Bundled agent skill access
  • MCP Server (nve mcp command) - Model Context Protocol server that:

    • Exposes all CLI tools to AI assistants (Claude, Cursor, etc.)
    • Provides context-specific prompts for common tasks
    • Enables AI-assisted development with Elements components
    • Integrates Elements knowledge directly into AI workflows

Getting Started

The best way to get started is to run the install script.

curl -fsSL https://nvidia.github.io/elements/install.sh | bash

Alternatively you can install with Node.js and npm.

npm install -g @nvidia-elements/cli

Usage

CommandDescription
nveShow About and help output.
nve api.list [format]Get a list of all available Elements (nve-*) APIs and components.
nve api.get <names> [format]Get documentation for known components or attributes by name (nve-*).
nve api.template.validate <template>Check HTML templates using Elements APIs and components (nve-*).
nve api.imports.get <template>Get ESM imports for an HTML template using Elements APIs (nve-*).
nve api.tokens.list [format] [query]Get available semantic CSS custom properties and design tokens for theming.
nve api.icons.list [format]Get available icon names for nve-icon and nve-icon-button.
nve examples.list [format]Get available Elements (nve-*) starter templates, patterns, and examples.
nve examples.get <id> [format]Get the full template of a known example or pattern by ID.
nve project.create <type> [cwd] [start]Create a new starter project.
nve project.setup [cwd]Set up or update a project to use Elements.
nve project.validate <type> [cwd]Check project configuration and dependencies.
nve packages.listGet latest published versions of all Elements packages.
nve packages.get <name>Get details for a specific Elements package.
nve packages.changelogs.get <name> [format] [limit]Retrieve changelog details by package name.
nve skills.list [format]Get available Elements agent skills and context.
nve skills.get <name> [format]Get a bundled Elements agent skill by name.
nve mcpStart the MCP server.

Global Options

OptionDescription
--helpShow help.
--versionShow version number.
--upgradeUpgrade Elements CLI (nve) to the latest version.
--debugEnable debug output for tools.

MCP

Quick Setup

The fastest way to configure MCP is with the project.setup command:

nve project.setup

This detects your package manager, configures the MCP server for Cursor, Codex, and Claude Code, and adds Elements core dependencies to the project.

Claude Code

Install to Claude Code by adding the configuration to your .mcp.json file. The file is typically located at ~/.config/claude-code/.mcp.json or %APPDATA%\claude-code\.mcp.json on Windows.

{
  "mcpServers": {
    "elements": {
      "description": "NVIDIA Elements UI Design System (nve-*), custom element schemas, APIs and examples",
      "command": "nve",
      "args": ["mcp"]
    }
  }
}

After adding the configuration, restart Claude Code for the changes to take effect. The Elements MCP tools are then available for use in your conversations.

Cursor

Install to Cursor with the MCP configuration below.

// .cursor/mcp.json
{
  "mcpServers": {
    "elements": {
      "description": "NVIDIA Elements UI Design System (nve-*), custom element schemas, APIs and examples",
      "command": "nve",
      "args": ["mcp"]
    }
  }
}

Prompts

PromptDescriptionExample Prompt
/aboutA brief introduction to Elements/about
/doctorVerify Elements setup and MCP configuration/doctor
/searchContext for searching Elements APIs/search What works for notifying a user of a long running process?
/new-projectContext for creating a new Elements project/new-project Create a todo app
/migrateContext for migrating from deprecated Elements APIs/migrate Migrate this project from deprecated Elements APIs

Skills

Skills provide persistent context to AI agents for building UI with Elements.

SkillDescription
elementsBuild UI with NVIDIA Elements (NVE). Provides authoring guidelines, workflow steps, and API best practices for creating, editing, or reviewing HTML templates that use nve-* components.
authoringAuthoring workflow guidance for creating, editing, or reviewing HTML templates that use nve-* components.
migrationMigration guidance for moving projects from deprecated Elements APIs to current packages and tools.

Tools

ToolDescription
api_listGet list of all available Elements (nve-*) APIs and components.
api_getGet documentation known components or attributes by name (nve-*).
api_template_validateValidates HTML templates using Elements APIs and components (nve-*).
api_imports_getGet esm imports for a given HTML template using Elements APIs (nve-*).
api_tokens_listGet available semantic CSS custom properties / design tokens for theming.
packages_listGet latest published versions of all Elements packages.
packages_getGet details for a specific Elements package.
packages_changelogs_getRetrieve changelog details by package name.
examples_listGet list of available Elements (nve-*) patterns and examples.
examples_getGet the full template of a known example or pattern by id.
skills_listGet a list of available Elements agent skills and context fragments.
skills_getGet a bundled Elements agent skill or context fragment by name.
project_createCreate a new starter project.
project_validateCheck project for configuration issues and dependencies.
project_setupSetup or update a project to use Elements.

Keywords

cli

FAQs

Package last updated on 04 Jun 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts