A tiny MCP server to access NVIDIA's usdcode model through Claude Code / Codex
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"usdcode": {
"env": {
"NVIDIA_API_KEY": "YOUR_KEY"
},
"args": [
"dist/server.js"
],
"command": "node",
"disabled": false
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A minimal MCP server that exposes a single tool backed by NVIDIA USDCode via the NVIDIA Integrate API. Great for Isaac Sim scripting tips, USD, Python snippets, and API usage.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml / developer-tools
Dynamic problem-solving through sequential thought chains
Persistent memory using a knowledge graph
Manage Supabase projects — databases, auth, storage, and edge functions
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
MCP Security Weekly
Get CVE alerts and security updates for Nvidia Usdcode Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A minimal MCP server that exposes a single tool backed by NVIDIA USDCode via the NVIDIA Integrate API. Great for Isaac Sim scripting tips, USD, Python snippets, and API usage.
NVIDIA_API_KEY, get it from here https://build.nvidia.com/nvidia/usdcodeYou can place it in a local .env file (loaded automatically) or export it in your shell.
Dependencies are already vendored in this workspace. If you need to reinstall:
npm ci or npm installBuild
npm run buildOutputs to dist/.
Run (standalone)
npm start (after building)node --enable-source-maps dist/server.jsThe server speaks MCP over stdio and is intended to be launched by an MCP-capable client.
Add an entry to your ~/.claude/config.json:
{
"mcpServers": {
"usdcode": {
"command": "node",
"args": ["dist/server.js"],
"env": { "NVIDIA_API_KEY": "YOUR_KEY" }, // if you didn't add .env to this project
"disabled": false
}
}
}
Add an entry to your ~/.codex/config.toml:
[mcp_servers.usdcode]
command = "node"
args = ["/absolute/path/to/mcp-usdcode/dist/server.js"]
env = { "NVIDIA_API_KEY" = "value" }
get_usdcode_helpquestion (string, required): Your prompt or question.temperature (number, optional, default 0.1)top_p (number, optional, default 1)max_tokens (integer, optional, default 1024)expert_type (string, optional, default "auto")Returns a single text message with the model’s reply.