Back to Browse

Nova3d MCP Server

Developer ToolsModerate5.2MCP RegistryLocal
Free

Server data from the Official MCP Registry

Structured, part-aware 3D generation for AI agents. Named-part GLB, preview URL, Blender script.

About

Structured, part-aware 3D generation for AI agents. Named-part GLB, preview URL, Blender script.

Security Report

5.2
Moderate5.2Moderate Risk

The Nova3D MCP server is a well-structured 3D generation tool with proper authentication, reasonable permission scoping, and mostly sound code practices. However, there are moderate concerns around credential handling in environment variables, insufficient input validation on user-supplied parameters passed to external APIs, and potential for information disclosure through error messages. The server correctly implements OAuth-style browser-based authentication with local session storage, but the fallback manual token mechanism and some error handling patterns introduce manageable but notable risks. Package verification found 1 issue (1 critical, 0 high severity).

3 files analyzed · 10 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

HTTP Network Access

Connects to external APIs or services over the internet.

env_vars

Check that this permission is expected for this type of plugin.

File System Read

Reads files on your machine. Normal for tools that analyze or process local data.

File System Write

Writes or modifies files on your machine. Check that this is expected for the tool.

Unverified package source

We couldn't verify that the installable package matches the reviewed source code. Proceed with caution.

What You'll Need

Set these up before or after installing:

Advanced/manual fallback API key from https://app.nova3d.xyz/api-key. Preferred onboarding is browser sign-in via nova3d_login.Required

Environment variable: NOVA3D_TOKEN

App URL used for conversation links, for example https://app.nova3d.xyz or http://127.0.0.1:5555Optional

Environment variable: NOVA3D_APP_URL

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-raresense-nova3d-mcp": {
      "env": {
        "NOVA3D_TOKEN": "your-nova3d-token-here",
        "NOVA3D_APP_URL": "your-nova3d-app-url-here"
      },
      "args": [
        "nova3d-mcp"
      ],
      "command": "uvx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

[!WARNING] Moved: Development continues in the Nova3D monorepo: https://github.com/RareSense/Nova3D/tree/main/mcp

nova3d-mcp

Structured, part-aware 3D generation for AI agents.

nova3d-mcp is an MCP server that exposes Nova3D's generation pipeline as a callable tool inside Codex, Cursor, VS Code, Visual Studio, Claude Code, and other MCP-compatible agents.

One tool call. A washing machine comes back with named drum, door, control panel, and hose connectors — separately editable, not fused into a blob.


Quickstart

Claude Code:

  1. Run claude mcp add nova3d -- uvx nova3d-mcp
  2. In Claude, call nova3d_login
  3. Complete the Nova3D browser sign-in flow
  4. Then call nova3d_status

Other MCP clients:


Why Nova3D

Every major AI 3D generator today produces mesh blobs — a single fused object that looks plausible in a render and collapses the moment you try to edit, rig, or pipeline it.

Nova3D is different. Instead of diffusion → mesh, it runs:

prompt / image
      ↓
LLM writes Blender Python construction code
      ↓
headless Blender executes + validates + repairs
      ↓
structured GLB — named parts, intact hierarchy, real joints

The result is a 3D asset that survives contact with real workflows: game engines, configurators, robotics simulations, AR scenes. Parts have names. Hierarchy is intact. Joints are real. You can change one component without regenerating everything.


Supported clients

ClientStatusInstall pathPreview path
CodexSupportedcodex mcp add or Codex MCP configBrowser conversation_url
CursorSupported.cursor/mcp.json or ~/.cursor/mcp.jsonBrowser conversation_url
VS CodeSupported.vscode/mcp.json, MCP: Add Server, or code --add-mcpBrowser conversation_url
Visual StudioSupported.mcp.json or Visual Studio MCP UIBrowser conversation_url
Claude CodeSupportedclaude mcp addBrowser conversation_url

Nova3D runs from your MCP client, but model inspection happens through the hosted browser viewer returned as conversation_url. This repository does not currently ship an embedded IDE-native 3D viewport.


Install

Add the MCP server in your client first. This only registers the server. It does not complete Nova3D account onboarding yet.

Codex
codex mcp add nova3d -- uvx nova3d-mcp

Codex also supports MCP configuration through ~/.codex/config.toml. If you prefer config files over the CLI, use Codex's MCP config surface and point it at the same stdio command: uvx nova3d-mcp.

Claude Code
claude mcp add nova3d -- uvx nova3d-mcp
Cursor

Create .cursor/mcp.json in your project, or ~/.cursor/mcp.json for a global install:

{
  "mcpServers": {
    "nova3d": {
      "command": "uvx",
      "args": ["nova3d-mcp"]
    }
  }
}
VS Code

Option A: add the server from the command line:

code --add-mcp "{\"name\":\"nova3d\",\"command\":\"uvx\",\"args\":[\"nova3d-mcp\"]}"

Option B: create .vscode/mcp.json in your workspace:

{
  "servers": {
    "nova3d": {
      "command": "uvx",
      "args": ["nova3d-mcp"]
    }
  }
}

You can also use MCP: Add Server from the Command Palette.

Visual Studio

Create <SOLUTIONDIR>/.mcp.json or %USERPROFILE%/.mcp.json:

{
  "servers": {
    "nova3d": {
      "command": "uvx",
      "args": ["nova3d-mcp"]
    }
  }
}

You can also add the server from the Visual Studio MCP UI by providing the stdio command uvx with args ["nova3d-mcp"].

After the server is installed in any client, the next step is to call nova3d_login or nova3d_setup from inside that client. Installation alone does not complete Nova3D onboarding.

First Run

After installing the MCP server in any client:

  1. Call nova3d_login
  2. Complete the Nova3D sign-in flow in the browser tab that opens
  3. Call nova3d_status
  4. If next_action == "purchase_credits", follow the returned purchase link
  5. When authenticated: true and generation_ready: true, start using generate_3d

Important:

  • Installing the MCP server and completing Nova3D sign-in are separate steps.
  • nova3d_login opens a browser tab and may return login_pending_confirmation: true while local MCP session setup is still being confirmed.
  • If browser sign-in finishes but login completion is ambiguous, call nova3d_status before retrying or considering manual fallback.
  • NOVA3D_TOKEN is an advanced/manual fallback only for environments where browser/loopback auth is unavailable.

For AI Assistants

If you are helping a user set up Nova3D MCP:

  1. Ensure the nova3d MCP server is installed in the client
  2. Call nova3d_login
  3. Tell the user a browser tab will open and they must complete sign-in there
  4. After browser sign-in, call nova3d_status
  5. If next_action == "purchase_credits", direct the user to the returned URL
  6. Proceed to generate_3d only when authenticated: true and generation_ready: true
  7. Only suggest manual NOVA3D_TOKEN setup if browser/loopback auth is unavailable

Onboarding Decision Tree

  • If nova3d_login returns login_pending_confirmation: true
    • complete the browser sign-in flow
    • then call nova3d_status
  • If nova3d_status.next_action == "sign_in"
    • call nova3d_login
  • If nova3d_status.next_action == "session_expired"
    • call nova3d_login again
  • If nova3d_status.next_action == "purchase_credits"
    • follow the returned purchase URL
  • If nova3d_status.next_action == null and generation_ready == true
    • proceed to generate_3d

Local install

If you prefer to install from source instead of uvx, clone the repository and install the package locally:

git clone https://github.com/RareSense/nova3d-mcp.git
cd nova3d-mcp
python3.10 -m venv .venv && source .venv/bin/activate
pip install .

Then replace uvx nova3d-mcp in the client examples above with the local nova3d-mcp executable from your environment.

Typical workflow

Once onboarding is complete, pass a prompt like this to your AI agent:

Generate a vending machine with separate door, glass panel, coin slot,
button grid, frame, and interior shelving.

The agent calls generate_3d. You get back:

{
  "glb_url": "https://nova3d.xyz/assets/abc123.glb",
  "conversation_url": "https://app.nova3d.xyz/chat/conv-...",
  "parts": ["door", "glass_panel", "coin_slot", "button_grid", "frame", "shelf_1", "shelf_2"],
  "joint_count": 1,
  "code_artifact": { ... },
  "workflow_id": "state-..."
}
  • conversation_url — your editing session in the Nova3D app, with the generated model and edit history already hydrated. All subsequent regenerate_part, add_part, and articulate_model calls on this asset link back to the same session.

Configuration notes

  • conversation_url is the standard supported way to inspect generated assets — it opens your fully hydrated editing session in the Nova3D app.
  • Preferred onboarding is browser sign-in through nova3d_login, then nova3d_status to confirm credits/readiness.
  • nova3d_login opens a browser tab and starts local MCP session setup through a loopback callback.
  • nova3d_status is the canonical follow-up check for authentication, credits, and readiness.
  • Keep secrets out of checked-in workspace config when possible. Prefer per-user configuration files or client-managed environment variables.
  • If your editor supports source-controlled MCP config, commit the server entry and inject NOVA3D_TOKEN per-user only for the advanced/manual fallback path.

Troubleshooting

ProblemWhat to check
Prompted to sign in before generationCall nova3d_login, then re-check with nova3d_status
nova3d_login returns login_pending_confirmation: trueFinish the browser sign-in step, then call nova3d_status
Browser sign-in finished but nova3d_login did not confirm completionCall nova3d_status now. If it still shows not signed in, retry nova3d_login
Told that credits are requiredFollow the purchase link returned by nova3d_status
Auth failure on startupSign in again with nova3d_login, or confirm the manual key at https://app.nova3d.xyz/api-key
uvx not foundInstall uv or use a local nova3d-mcp executable from a virtualenv
No 3D preview inside the editorOpen the returned conversation_url in the browser; that is the supported preview path

Tools

generate_3d

Generate a structured 3D asset from text (and optional reference image). Initial generation runs through Nova3D's paid GraphFlow v2 workflow. This MCP server does not expose BYOK/provider-key generation.

ParameterTypeRequiredDescription
promptstringAsset description. Be specific about parts.
modelstringPaid routing preset: "gemini" (default) · "claude-sonnet" · "claude-opus" · "claude-opus-latest" · "gpt-5.5"
image_base64stringReference image as plain base64; the server converts it to the v2 image_artifact data-URL format
image_mimestringe.g. "image/jpeg"

Returns: glb_url, conversation_url, parts, joint_count, code_artifact, model_artifact, workflow_id. Pass code_artifact to any edit tool. Open conversation_url to see the full edit history for this asset in the Nova3D app.


regenerate_part

Regenerate one named part without rebuilding the whole asset.

ParameterTypeRequiredDescription
code_artifactobjectFrom prior generate_3d result
part_typestringPart name e.g. "door", "handle"
descriptionstringWhat the new part should look like
modelstring"gemini" (default) · "claude-sonnet" · "claude-opus" · "claude-opus-latest" · "gpt-5.5"

Finding part names: Open the conversation_url from your generation and inspect the model viewer — each mesh is labeled. Use that exact name as part_type.


add_part

Add a new component to an existing asset.

ParameterTypeRequiredDescription
code_artifactobjectFrom prior generation result
descriptionstringDescription of the new part and where it goes
modelstring"gemini" (default) · "claude-sonnet" · "claude-opus" · "claude-opus-latest" · "gpt-5.5"

articulate_model

Add joints, hinges, or rotational articulation to an existing asset.

ParameterTypeRequiredDescription
code_artifactobjectFrom prior generation result
articulation_requeststringWhat should move and how
model_urlstringglb_url from prior generation. Provide this or model_artifact.
model_artifactobjectmodel_artifact from prior generation. Provide this or model_url.
modelstring"gemini" (default) · "claude-sonnet" · "claude-opus" · "claude-opus-latest" · "gpt-5.5"
selected_mesheslistSpecific mesh names to articulate

get_generation_status

Check the status of a running workflow by ID.

ParameterTypeRequiredDescription
workflow_idstringFrom any prior generation tool

nova3d_login

Start the preferred browser-based Nova3D sign-in flow and store a local MCP session. This opens a browser tab. If the browser flow finishes but local completion is ambiguous, call nova3d_status before using manual token fallback.


nova3d_status

Return the canonical Nova3D onboarding/readiness state, including identity, credits, generation readiness, and the next recommended action.


nova3d_logout

Clear the locally stored MCP session. This does not remove an advanced/manual NOVA3D_TOKEN from your MCP config.


Typical workflow

1. generate_3d("robot dog with four legs, head, torso, and tail")
   → glb_url, conversation_url, parts, code_artifact

2. Open conversation_url in browser
   → see named parts, identify what needs changing

3. regenerate_part(code_artifact, part_type="head", description="...")
   → updated glb_url, same conversation_url

4. add_part(code_artifact, description="a wagging tail with three segments")
   → updated glb_url, parts list now includes new tail segments

5. articulate_model(code_artifact, model_url, "make legs rotate at hip joints")
   → glb_url with working joints

All edit tools accept the code_artifact from any prior result and return an updated one. Always pass the most recent code_artifact forward — it carries the session state that links your edits together.


Model reference

model valueProviderNotes
"gemini" (default)Google GeminiRecommended for spatial reasoning
"claude-sonnet"AnthropicStrong reasoning
"claude-opus"AnthropicMost capable Anthropic model
"claude-opus-latest"AnthropicLatest Opus version
"gpt-5.5"OpenAILatest GPT model

Environment variables

VariableRequiredDescription
NOVA3D_TOKENAdvanced/manual fallback API key from https://app.nova3d.xyz/api-key
NOVA3D_API_URLOverride API base URL (default: https://nova3d.xyz/api)
NOVA3D_APP_URLOverride app URL for conversation links (default: https://app.nova3d.xyz)

How it differs from blender-mcp

blender-mcp (21.9k ★) gives AI agents a remote control for a locally running Blender instance. It requires Blender installed, produces unstructured output, and inherits all the bpy hallucination problems of raw LLM → Blender code generation.

nova3d-mcp is different in kind:

blender-mcpnova3d-mcp
Blender requiredYesNo
OutputUnstructured sceneNamed, hierarchical GLB
ValidationNoneServer-side repair loop
Part awarenessNoYes — named, addressable
JointsManual scriptingFirst-class output
Hosted backendNoYes

Contributing

Issues, PRs, and workflow feedback welcome. github.com/RareSense/nova3d-mcp

Community Discord: discord.gg/QEH8mzcwdR


License

MIT — see LICENSE

Reviews

No reviews yet

Be the first to review this server!