Skip to content

Commit 6c8cd2b

Browse files
committed
fix(cli): correct case sensitive identifiers
Signed-off-by: Cory Rylan <crylan@nvidia.com>
1 parent 089acec commit 6c8cd2b

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

‎projects/cli/package.json‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"directory": "projects/cli"
2020
},
2121
"sideEffects": false,
22-
"mcpName": "io.github.nvidia/elements",
22+
"mcpName": "io.github.NVIDIA/elements",
2323
"bin": {
2424
"nve": "./dist/index.js"
2525
},

‎projects/cli/server.json‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3-
"name": "io.github.nvidia/elements",
3+
"name": "io.github.NVIDIA/elements",
44
"title": "NVIDIA Elements",
55
"description": "NVIDIA Elements UI design system and agent tools for AI/ML, robotics, and autonomous vehicles.",
66
"websiteUrl": "https://nvidia.github.io/elements/docs/mcp/",

‎projects/cli/src/mcp/index.ts‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ export async function startMcpServer() {
102102
process.env.ELEMENTS_ENV='mcp';
103103

104104
constserver=newMcpServer({
105-
name: 'io.github.nvidia/elements',
105+
name: 'io.github.NVIDIA/elements',
106106
version: VERSION,
107107
description:
108108
'NVIDIA Elements UI Design System (nve-*), custom element schemas, APIs and examples. Use the "elements" skill for more guidance if available.'

0 commit comments

Comments
 (0)