Back to MCP Servers

Vitrine3d Mcp

3D product viewer platform with a visual editor. Upload GLB models, style scenes with lighting, camera, and backgrounds, and embed on any website. `npx @vitrine3d/mcp`

e-commerce
By vitrine3d
0Updated 1 month agoTypeScriptMIT

Installation

npx @vitrine3d/mcp

Configuration

{
  "mcpServers": {
    "mcp": {
      "command": "npx",
      "args": ["-y", "mcp"]
    }
  }
}

How to use

  1. Run the installation command above (if needed)
  2. Open your Claude Code settings file (~/.claude/settings.json)
  3. Add the configuration to the mcpServers section
  4. Restart Claude Code to apply changes

vitrine MCP server

npm Glama License: MIT

MCP server for vitrine — the 3D product viewer platform. Upload GLB models, configure scenes, publish embeds, and manage Looks from any AI agent.

Setup

Add to your MCP client config (Claude Code, Cursor, Windsurf, etc.):

{
  "mcpServers": {
    "vitrine": {
      "command": "npx",
      "args": ["@vitrine3d/mcp"]
    }
  }
}

Works immediately with no API key — anonymous uploads expire after 48 hours.

Keep your models

Say "log me in" to your AI agent. A browser window opens, you sign in (or sign up for free), and your models become permanent. No manual key copying needed.

Or set an API key manually:

{
  "mcpServers": {
    "vitrine": {
      "command": "npx",
      "args": ["@vitrine3d/mcp"],
      "env": {
        "VITRINE_API_KEY": "vt_..."
      }
    }
  }
}

Generate keys at app.vitrine3d.com → Account → API Keys.

What you can do

Ask your AI agent things like:

  • "Upload this shoe model and give me an embed code"
  • "Make the lighting warmer and add bloom"
  • "List my models and publish the chair"
  • "Create a Look called 'Noir' with dark background and dramatic lighting"

Tools

Models

ToolDescription
vitrine_list_modelsList all models with IDs, names, and publish status
vitrine_upload_modelUpload a GLB file from disk
vitrine_model_infoGet model details, thumbnail, and merged config
vitrine_delete_modelDelete a model and its storage

Configuration

ToolDescription
vitrine_get_configGet the full scene config for a model
vitrine_set_configApply a config patch (lighting, camera, background, effects)
vitrine_list_hdrisList available HDRI environment presets
vitrine_config_schemaGet the full config JSON schema

Publishing

ToolDescription
vitrine_publishPublish or unpublish a model
vitrine_get_embedGet ready-to-paste embed HTML

Looks

ToolDescription
vitrine_list_looksList your saved Looks
vitrine_apply_lookApply a Look to a model
vitrine_create_lookSave a config as a named Look

Account

ToolDescription
vitrine_account_infoCurrent plan, usage, and limits
vitrine_loginConnect your account via browser
vitrine_logoutRemove saved credentials
vitrine_feedbackSubmit a bug report or feature request

Resources

ResourceDescription
vitrine://config-schemaFull SceneConfig JSON schema
vitrine://hdri-presetsAvailable HDRI presets
vitrine://embed-templateEmbed code template

HTTP transport

Run as a hosted HTTP server instead of stdio:

npx @vitrine3d/mcp --http          # default port 3000
PORT=8080 npx @vitrine3d/mcp --http # custom port

The server exposes a Streamable HTTP endpoint at /mcp, compatible with Smithery, Glama connectors, and any MCP client that supports HTTP transport.

How it works

You -> AI Agent (Claude, Cursor, etc.)
        | MCP protocol (stdio or HTTP)
      vitrine MCP server
        | HTTPS
      api.vitrine3d.com
        |
      Supabase (database, storage, auth)

Documentation

License

MIT

View source on GitHub