Skip to main content

Thrixel MCP Server

Model Context Protocol (MCP) server for the Thrixel 3D generation platform. Enables AI agents to create, edit, detail, and download game-ready 3D models through natural conversation — and to see each result before building on it.

Features

12 tools covering the Thrixel generation pipeline:

Category Tools
Create thrixel_create_model, thrixel_sculpt_model
Refine thrixel_edit_model, thrixel_autofix_model
Detail & Texture thrixel_detail_model, thrixel_retexture_model
Optimize thrixel_reduce_triangles
Inspect thrixel_inspect_model, thrixel_list_assets
Jobs & Download thrixel_job_status, thrixel_download
Account thrixel_account_status

Key Capabilities

  • Text to 3D: create_model returns an editable, multi-part mesh — parts stay separate and named, so you can retexture or transform individual pieces later. The default for props, vehicles, buildings, weapons, furniture.
  • Image to 3D: sculpt_model turns a photo or a description into a dense single organic mesh — creatures, characters, plants, food.
  • Natural-language editing: edit_model changes one thing and leaves the rest alone, optionally scoped to named parts. Iterating beats regenerating.
  • Detail & retexture: detail_model adds high-resolution geometry and PBR texture; retexture_model swaps materials without touching geometry — the cheap way to restyle a whole asset set.
  • Free triangle reduction: reduce_triangles hits a game budget for zero cubes and routes to the right backend operation automatically. Never re-run a detail pass just to get a lighter mesh.
  • Budget-aware: account_status reports the cube balance, the enforced concurrency cap, and what is running, so a batch can be sized before it starts instead of failing partway through.
  • Visual feedback loop: every finished job returns a rendered thumbnail as image content, so the agent can judge the result and retry rather than carrying a broken asset forward.
  • Waits for you: job tools block until the model is finished and write the GLB straight into your project. One tool call equals one finished asset — no agent-authored polling loop to silently give up halfway.
  • Style consistency: reuse one reference_image_id across many assets, or pass style_reference_submission_id, to keep a set looking like a set. Reusing a reference image is not re-charged.

Prerequisites

  • uv — one binary, no Python setup needed.

    macOS / Linux

    curl -LsSf https://astral.sh/uv/install.sh | sh
    

    Windows (PowerShell)

    irm https://astral.sh/uv/install.ps1 | iex
    
  • A Thrixel API key — see below.

uvx fetches the server and a suitable Python into a throwaway environment on first run. You do not need to clone anything, create a virtualenv, or install Python yourself.

Sign In

uvx thrixel-mcp@latest login

It prints a link and a short code, and opens the link if you have a browser:

  Open this link to finish signing in:
      https://thrixel.com/beta/cli-auth?code=WXYZ-4821

  Confirm the page shows this code:  WXYZ-4821

  Waiting for approval...

Open the link, check that the code on the page matches the one in your terminal, and click Approve. Sign-up happens on that page if you do not have an account yet. The command then stores a key in ~/.thrixel/credentials.json (mode 0600). Nothing is copied by hand, and the key never enters the agent's conversation.

The key does not expire, so this is a one-time step. thrixel-mcp status shows what is stored; thrixel-mcp logout removes it.

Works over SSH and inside containers: with no browser available it simply prints the link, and you can open it on any machine.

Prefer to create a key by hand?
  1. Open thrixel.com/beta/#settings/api-keys.
  2. Click Create new secret key.
  3. Copy it. It starts with sk-thrixel- and is shown only once.

Then pass it as THRIXEL_API_KEY in the env block of your MCP client config. An environment variable always takes precedence over the stored credentials.

Installation

Option 1 · Claude Code · Recommended

After signing in above, no key goes in the command:

claude mcp add --scope user thrixel -- uvx thrixel-mcp@latest

--scope user is the part that matters. claude mcp add defaults to --scope local, which registers the server for the current directory only - so every new project starts with no Thrixel tools, and you add it and restart again. User scope registers it once for every project on the machine. Use --scope project instead only when you want the server recorded in a .mcp.json your teammates will share.

The server reads ~/.thrixel/credentials.json, written by login above. That is the recommended path, and not only for convenience: the key goes straight from the sign-in into a 0600 file, so it never appears on a command line, in your shell history, or in any config file.

Passing the key explicitly instead (and why it is second choice)

This puts a live key into your shell history (~/.bash_history, PowerShell's ConsoleHost_history.txt) and stores it in plaintext in the client's config. Prefer login unless you have a reason not to, such as CI, where the key comes from a secret store rather than a person typing it.

This form takes no JSON, so it behaves identically in every shell:

claude mcp add --scope user thrixel --env THRIXEL_API_KEY=sk-thrixel-YOUR_API_KEY -- uvx thrixel-mcp@latest
Prefer add-json? Quoting differs per shell

Only the outer quoting changes; the JSON itself is identical.

macOS / Linux, Git Bash, WSL

claude mcp add-json --scope user thrixel '{"command":"uvx","args":["thrixel-mcp@latest"],"env":{"THRIXEL_API_KEY":"sk-thrixel-YOUR_API_KEY"}}'

Windows PowerShell — PowerShell rewrites inner double quotes when passing arguments to a native command, so they must be escaped. Without this you get Invalid configuration: : Invalid input.

claude mcp add-json --scope user thrixel '{\"command\":\"uvx\",\"args\":[\"thrixel-mcp@latest\"],\"env\":{\"THRIXEL_API_KEY\":\"sk-thrixel-YOUR_API_KEY\"}}'

Windows CMD — wrap in double quotes and double every inner one.

claude mcp add-json --scope user thrixel "{""command"":""uvx"",""args"":[""thrixel-mcp@latest""],""env"":{""THRIXEL_API_KEY"":""sk-thrixel-YOUR_API_KEY""}}"

Verify with claude mcp list, then open a new session.

Option 2 · Install by Asking Your AI Agent

Already chatting with Cursor / Claude Code / Codex? Paste this prompt:

Install the Thrixel MCP server for me. Docs: https://github.com/thrixel/thrixel_mcp
Run it with: uvx thrixel-mcp@latest
Use this env var: THRIXEL_API_KEY=sk-thrixel-YOUR_API_KEY

Option 3 · Manual Install

Cursor

Paste into .cursor/mcp.json (project) or ~/.cursor/mcp.json (global):

macOS / Linux

{
  "mcpServers": {
    "thrixel": {
      "command": "uvx",
      "args": ["thrixel-mcp@latest"],
      "env": { "THRIXEL_API_KEY": "sk-thrixel-YOUR_API_KEY" }
    }
  }
}

Windows — GUI apps often do not inherit your shell PATH, so give the full path to uvx.exe (find it with where.exe uvx):

{
  "mcpServers": {
    "thrixel": {
      "command": "C:\\Users\\YOU\\.local\\bin\\uvx.exe",
      "args": ["thrixel-mcp@latest"],
      "env": { "THRIXEL_API_KEY": "sk-thrixel-YOUR_API_KEY" }
    }
  }
}
Claude Desktop

Add to claude_desktop_config.json:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "thrixel": {
      "command": "uvx",
      "args": ["thrixel-mcp@latest"],
      "env": { "THRIXEL_API_KEY": "sk-thrixel-YOUR_API_KEY" }
    }
  }
}

Windows: replace "uvx" with the absolute path to uvx.exe — the desktop app does not inherit your shell PATH. See the Cursor block above.

Codex / VS Code / Windsurf

Same shape as above — command: "uvx", args: ["thrixel-mcp@latest"], and THRIXEL_API_KEY in the env block.

Without uv (pip fallback)
pip install thrixel-mcp

Then point the client at your interpreter:

{
  "mcpServers": {
    "thrixel": {
      "command": "python",
      "args": ["-m", "thrixel_mcp.server"],
      "env": { "THRIXEL_API_KEY": "sk-thrixel-YOUR_API_KEY" }
    }
  }
}

Use an absolute path to python if the client cannot find it on PATH.

Pre-release / unpublished builds

uvx can run straight from the repository, no PyPI release needed:

# latest main, ahead of the newest release
uvx --from git+https://github.com/thrixel/thrixel_mcp thrixel-mcp

# a local checkout
uvx --from /path/to/thrixel_mcp thrixel-mcp

Same shape in a client config — replace args with ["--from", "git+https://github.com/thrixel/thrixel_mcp", "thrixel-mcp"].

Activate After Install

Most clients auto-load the new server, but Cursor and VS Code require a manual toggle:

Client What to do Verify
Claude Code Nothing — auto-loads on next message /mcp shows thrixel ✓ connected
Cursor Restart → SettingsMCP & Integrations → toggle thrixel on → wait for green dot ● → open a new chat List the thrixel tools available
Claude Desktop Quit & relaunch the app List the thrixel tools available
VS Code Run command MCP: List Servers → click thrixelStart List the thrixel tools available
Codex Nothing — auto-loads on next session List the thrixel tools available

Usage

Once connected, just ask:

Make me a low-poly wooden market stall for a game, under 5000 triangles.

The agent will chain thrixel_create_modelthrixel_detail_modelthrixel_reduce_triangles, save the GLB into ./thrixel_assets/, and show you the render at each step.

Troubleshooting

  • Invalid configuration: : Invalid input (Windows) — claude mcp add-json received mangled JSON because PowerShell rewrote the inner double quotes. Either escape them (\") or skip JSON entirely and use the flag form: claude mcp add --scope user thrixel --env THRIXEL_API_KEY=... -- uvx thrixel-mcp@latest. See Option 1.
  • spawn uvx ENOENT — the client cannot find uvx on PATH. Use the absolute path: which uvx on macOS / Linux, where.exe uvx on Windows (usually C:\Users\YOU\.local\bin\uvx.exe). GUI clients are the usual culprits — they don't inherit your shell PATH.
  • THRIXEL_API_KEY is not set — the key didn't reach the server. Make sure it sits inside an "env": {...} block in your MCP config, not in args.
  • Tool calls return "Thrixel rejected the API key" — the key is invalid or revoked. Generate a fresh one at thrixel.com/beta/#settings/api-keysCreate new secret key, then update the env block.
  • First call is slowuvx is resolving and caching the package. Subsequent starts are fast.
  • "You have N jobs already running" — you hit the per-plan concurrency cap. Run large batches in waves; thrixel_account_status shows your cap and what is in flight, and thrixel_pricing lists the cap for every plan.
  • "Out of cubes" — see Costs. thrixel_account_status shows the balance; thrixel_reduce_triangles and rebakes are free.
  • Jobs time out — GPU work can queue behind other jobs. Raise THRIXEL_TIMEOUT_S, or submit with wait=false and poll via thrixel_job_status.
  • Client doesn't list thrixel — make sure the config file is valid JSON (no trailing commas), then fully restart the client.
  • Stuck on an old version — check what you have with uvx thrixel-mcp@latest --version, and compare it against what your client loaded (/mcp in Claude Code shows the running server's version). The configs above all say thrixel-mcp@latest, so a new session picks up new releases on its own; if yours says plain thrixel-mcp, add @latest. Note that an MCP client starts its servers once, at session start — updating the package cannot change a server that is already running, so restart the client after an update. To clear the cache outright: uvx --refresh thrixel-mcp@latest --version.

Costs

Cubes are Thrixel's usage credits. Three pricing shapes:

Operation Cost
detail_model, sculpt_model, retexture_model Flat 40 cubes each
reduce_triangles, texture rebake Free
create_model, edit_model, autofix_model Metered — charged after the run on actual model usage

Metered is not a synonym for cheap. It scales with how complex the request is: observed runs land anywhere from single digits to over 100 cubes, so a complex create_model can cost more than a flat GPU operation. Call thrixel_account_status to see your balance before a big batch.

Every export format (GLB, FBX, OBJ, STL, USDZ) is free on every plan.

Configuration

Environment Variable Description Default
THRIXEL_API_KEY Required. Your Thrixel API key (starts with sk-thrixel-). Create one here
THRIXEL_API_BASE API base URL https://api.thrixel.com
THRIXEL_OUTPUT_DIR Where generated models are written. Writes outside it are refused ./thrixel_assets
THRIXEL_TIMEOUT_S Ceiling in seconds for a single submit-and-wait cycle 600
THRIXEL_LOG_LEVEL Server log level, written to stderr INFO

Development

git clone https://github.com/thrixel/thrixel_mcp.git
cd thrixel_mcp

# uv
uv sync

# or conda
conda env create -f environment.yml
conda activate thrixel-mcp

Run the server the way a client does, against a local backend:

THRIXEL_API_BASE=http://localhost:8000 THRIXEL_API_KEY=sk-thrixel-... \
  uvx --from . thrixel-mcp

To see the raw protocol, point the MCP Inspector at it - -e flags go after the target command:

npx -y @modelcontextprotocol/inspector --cli uvx thrixel-mcp \
  --method tools/list -e THRIXEL_API_KEY=sk-thrixel-...

Drop --cli for a web UI that shows each request/response pair. Claude Code's claude --debug-file /tmp/mcp.log -p "..." logs the connection, negotiated capabilities and dispatched tools, though not the JSON-RPC payloads.

This server holds no state and no business logic - it is a client of the public Thrixel API. Anything it can do, a direct API caller can do too. It speaks stdio, which is what every MCP client above launches it as.

License

MIT

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

thrixel_mcp-1.0.0.tar.gz (48.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

thrixel_mcp-1.0.0-py3-none-any.whl (61.4 kB view details)

Uploaded Python 3

File details

Details for the file thrixel_mcp-1.0.0.tar.gz.

File metadata

  • Download URL: thrixel_mcp-1.0.0.tar.gz
  • Upload date:
  • Size: 48.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for thrixel_mcp-1.0.0.tar.gz
Algorithm Hash digest
SHA256 ceb9ee15856930c089b4272c247a579044362603b9c7a2357599ae128c5c1607
MD5 e60e9a9933da0e4d94a39b5b74bc356a
BLAKE2b-256 6420b7c529389c63740f19c8b0b138fac7b40ea6ac0602102a5d83151763aa21

See more details on using hashes here.

File details

Details for the file thrixel_mcp-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: thrixel_mcp-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 61.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for thrixel_mcp-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 15c3c42c26bfd789cbdeb15d5c4acece633f7f90307671b015c0b4b40ffb8bbe
MD5 6ffdf283b05bb8b543f2b97ee53a1bb8
BLAKE2b-256 ec7222250b6b14130442060488786ad7c4b91537d62b843a6455865a1345012c

See more details on using hashes here.

Release history Release notifications | RSS feed

1.3.7

2 files

1.3.6

2 files

1.3.5

2 files

1.3.4

2 files

1.3.3

2 files

1.3.2

2 files

1.3.1

2 files

1.3.0

2 files

1.2.1

2 files

1.2.0

2 files

1.1.8

2 files

1.1.7

2 files

1.1.6

2 files

1.1.5

2 files

1.1.4

2 files

1.1.3

2 files

1.1.2

2 files

1.1.1

2 files

1.1.0

2 files

1.0.2

2 files

1.0.1

2 files

This release

1.0.0 This release

2 files

0.1.13

2 files

0.1.12

2 files

0.1.11

2 files

0.1.10

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page