- Home
- MCP servers
- usdcode
usdcode
- typescript
6
GitHub Stars
typescript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"ishandotsh-nvidia-usdcode-mcp-server": {
"command": "node",
"args": [
"dist/server.js"
],
"env": {
"NVIDIA_API_KEY": "YOUR_KEY"
}
}
}
}You expose a single tool backed by NVIDIA USDCode via the NVIDIA Integrate API, enabling you to query USDCode for help and snippets directly from your MCP client. This server is lightweight, runs with Node.js, and is designed for scripting tips, USD usage, Python snippets, and API exploration in environments like Isaac Sim.
How to use
You run this MCP server as a local stdio service and connect to it from an MCP-capable client. The server exposes the get_usdcode_help tool, which sends your prompt to NVIDIA USDCode and returns the model’s reply as plain text. You can integrate it with Claude Desktop or OpenAI Codex MCP clients by registering the local command and ensuring your NVIDIA API key is available in the environment.
How to install
Prerequisites: install Node.js 18+ on your machine. You also need an NVIDIA API key to access USDCode.
Step 1: install dependencies
npm ci
# or: npm install
Step 2: build the project
npm run build
Step 3: run the server
npm start
# or run directly
node --enable-source-maps dist/server.js
Additional sections
Configuration, security, and usage notes are provided here to help you get up and running quickly and securely.
Available tools
get_usdcode_help
Query NVIDIA USDCode for help. Provide a question and optional parameters to receive a single text reply containing the model's response.