3dsmax-mcp

3dsmax-mcp is a skill for Claude Code, Codex from cl0nazepamm/3dsmax-mcp. It costs 24 tokens per session (6,133 once invoked), scanned A, original, MIT.

A guide for controlling Autodesk 3ds Max, a 3D modelling and animation program, through connected tools. It explains how to inspect scenes, objects, materials, plug-ins, and object relationships safely.

In plain words
What is it for?
Use it to inspect 3D scenes and objects, examine materials and properties, understand dependencies and instances, and choose the right control tool.
Why use it?
It helps avoid sending commands to the wrong 3ds Max session and reduces mistakes caused by unfamiliar scene or plug-in interfaces.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to inspect 3D scenes and objects, examine materials and properties, understand dependencies and instances, and choose the right control tool.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/cl0nazepamm/3dsmax-mcp/3dsmax-mcp-dev
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add cl0nazepamm/3dsmax-mcp --skill 3dsmax-mcp-dev
Clone the repo
git clone --depth 1 https://github.com/cl0nazepamm/3dsmax-mcp

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for 3dsmax-mcp

README.md
[![agentmods](https://agentmods.dev/badge/skills/cl0nazepamm/3dsmax-mcp/3dsmax-mcp-dev/github.svg)](https://agentmods.dev/skills/cl0nazepamm/3dsmax-mcp/3dsmax-mcp-dev)
Your own site
<a href="https://agentmods.dev/skills/cl0nazepamm/3dsmax-mcp/3dsmax-mcp-dev"><img src="https://agentmods.dev/badge/skills/cl0nazepamm/3dsmax-mcp/3dsmax-mcp-dev/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for 3dsmax-mcp

Your own site · 80×15
<a href="https://agentmods.dev/skills/cl0nazepamm/3dsmax-mcp/3dsmax-mcp-dev"><img src="https://agentmods.dev/badge/skills/cl0nazepamm/3dsmax-mcp/3dsmax-mcp-dev.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 24 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 6,133 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00024 $0.06133
Opus 5 $0.00012 $0.03067
Sonnet 5 $0.00005 $0.01227
Haiku 4.5 $0.00002 $0.00613

Measured 2d ago against content hash 8b319e6222f5, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

3dsmax-mcp scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/3dsmax-mcp-dev/SKILL.md · 249 lines

How it starts

The opening of the file, as written. The whole thing — 249 lines — stays where its author put it; the contents beside it link to each section on GitHub.

3ds Max MCP — Agent Guide

Tool Profile Routing

  • Full/core: Operational tools such as query_scene and create_object are advertised directly; call the matching tool by name.
  • Progressive: If the advertised surface contains only list_toolsets, describe_toolset, and call_tool, never call an operational name as a top-level MCP tool. Choose the relevant capability with list_toolsets, load only that group with describe_toolset, then invoke the selected operation through call_tool(name=..., arguments=...).
  • Do not describe every toolset up front. Load only the group needed for the current request; if the exact operational tool and arguments are already known, call_tool can dispatch it directly.

Principles:

  • Match the user's request. Do not run setup, discovery, or scene analysis by habit.
  • Do not call get_bridge_status or get_session_context as a session preamble.
  • Prefer a dedicated MCP tool over raw MAXScript when a tool clearly matches the task.
  • Do not render unless the user explicitly asks. Viewport capture is fine when visual proof is useful.
  • Multiple Max instances: list_max_instances, select_max_instance(pid), get_selected_max_instance, and release_max_instance are available in every profile. The first successful native connection stays bound to that Max. Starting or claiming another Max only changes the default for unbound clients. If the selected Max closes, explicitly select another or release it; clients never silently switch. MCP_MAX_PID or MCP_MAX_PIPE pins the startup target (MCP_MAX_PIPE takes precedence). Release also clears startup pinning.

Tool Choice

Scene reads — use query_scene(action=...):

  • overview | filter | class | property | selection | delta
  • get_instances / get_dependencies — instancing and reference graph
  • resolve_node_refs — turn a name, handle, or absolute JSON-Pointer hierarchy path into a canonical handle/name/path identity; multiple selectors are cross-checked
  • scene_qa(action="scan") — deterministic naming, transform, hierarchy/group, and timeline checks only; it never analyzes meshes, UVs, topology, normals, skinning, or visual quality
  • get_session_context — bridge + capabilities + overview + selection (on demand only)

Read the full file on GitHub · 249 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago Changed · +13 lines 8b319e6222f5
  2. 5d ago Changed · +11 lines dc9f224e714b
  3. 7d ago Changed · +18 lines 6e327463cbdb
  4. 12d ago First seen · 207 lines · 24 tokens per session scan A 099d03ac412f

Subscribe to this mod's changes

3dsmax-mcp is a skill published in the GitHub repository cl0nazepamm/3dsmax-mcp (224 stars, last pushed today), licensed MIT. It adds 24 tokens to every session and 6,133 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

dcc-mcp-3dsmax-setup

Set up dcc-mcp-3dsmax for an agent or operator: install 3ds Max Python dependencies with 3dsmaxpy, generate MCP host configuration, guide the user through starting the runtime inside 3ds Max, and run a first live-tool smoke prompt.

dcc-mcp/dcc-mcp-3dsmax · 70 tokens

3dsmax-asset-source

Domain skill — search and resolve assets into validated AssetDescriptor contracts for cross-DCC asset import pipelines. Returns static catalog entries; production sources can layer download helpers or remote resolution without changing the contract.

dcc-mcp/dcc-mcp-3dsmax · 46 tokens

3dsmax-scene

Domain skill - open, save, merge, inspect, and manage scenes and objects in the current Autodesk 3ds Max session. Use for typed scene lifecycle, nodes, cameras, selection, visibility, parenting, grouping, pivots, transforms, scene metadata, or object cleanup.

dcc-mcp/dcc-mcp-3dsmax · 62 tokens

3dsmax-geometry-io

Domain skill - validate geometry files and run host-native geometry import and export operations in Autodesk 3ds Max. Use for FBX/OBJ/3DS import checks, FBX import, FBX export, OBJ export, and structured import/export stats.

dcc-mcp/dcc-mcp-3dsmax · 59 tokens

3dsmax-lookdev

Domain skill - configure OCIO color management, HDR environment lighting, preview materials, and assign renderer-specific materials (Arnold, V-Ray, Scanline) in 3ds Max.

dcc-mcp/dcc-mcp-3dsmax · 43 tokens

3dsmax-render

Domain skill - capture viewports, render scenes to image files, create preview playblasts, configure renderers (Arnold, V-Ray, Scanline), produce HDR/EXR output and multi-pass AOV renders, inspect render settings and statistics, and adjust common render output options in 3ds Max.

dcc-mcp/dcc-mcp-3dsmax · 68 tokens