
Research
/Security News
Popular npm Packages in the keyv and Cacheable Namespaces Compromised in Active Supply Chain Attack
Popular npm packages keyv and cacheable compromised.
sceneview-mcp
Advanced tools
MCP server for SceneView — cross-platform 3D & AR SDK for Android and iOS. Give Claude the full SceneView SDK so it writes correct, compilable code.
Give any AI assistant expert-level knowledge of 3D and AR development.
The official Model Context Protocol server for SceneView — the cross-platform 3D & AR SDK for Android (Jetpack Compose + Filament), iOS / macOS / visionOS (SwiftUI + RealityKit), and Web (Filament.js + WebXR).
Connect it to Claude, Cursor, Windsurf, or any MCP client. Your AI assistant gets specialized tools, compilable code samples, the full API reference, and a code validator — so it writes correct, working 3D/AR code on the first try.
Disclaimer: Generated code is provided "as is" without warranty. Always review before production use. See TERMS.md and PRIVACY.md.
One command — no install required:
npx sceneview-mcp
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"sceneview": {
"command": "npx",
"args": ["-y", "sceneview-mcp"]
}
}
}
Restart Claude Desktop after saving.
Two options.
Recommended — install the SceneView Claude Code plugin to get this MCP server plus 11 namespaced contributor commands and cross-platform reminder hooks in one shot:
/plugin marketplace add sceneview/claude-marketplace
/plugin install sceneview@sceneview
Or — just the MCP server (lighter, no commands or hooks):
claude mcp add sceneview -- npx -y sceneview-mcp
Open Settings > MCP, add a new server named sceneview with command npx -y sceneview-mcp. Or add to .cursor/mcp.json:
{
"mcpServers": {
"sceneview": {
"command": "npx",
"args": ["-y", "sceneview-mcp"]
}
}
}
Same JSON config as above. The server communicates via stdio using the standard MCP protocol.
Every developer tool is free: setup guides for every platform, code samples, the API reference, the migration tooling, the validator, model search, and the project analyzer.
| Tool | What it does |
|---|---|
get_setup | Gradle + manifest setup for Android 3D or AR |
get_ios_setup | SPM dependency, Info.plist, SwiftUI for iOS / macOS / visionOS |
get_web_setup | Kotlin/JS + Filament.js (WASM) for browser-based 3D |
get_ar_setup | Permissions, session options, plane detection, image tracking |
get_platform_setup | Unified setup guide for any platform (Android, iOS, Web, Flutter, RN, Desktop, TV) |
| Tool | What it does |
|---|---|
get_sample | Returns a complete, compilable code sample for any of 33 scenarios (Kotlin or Swift) |
list_samples | Browse all samples, filter by tag (ar, 3d, ios, animation, geometry, ...) |
validate_code | Checks generated code against 30+ rules — including symbol existence against the real public API, with did-you-mean suggestions — before presenting it to the user |
migrate_code | Automatically migrates SceneView 2.x / 3.x code with detailed changelog |
get_migration_guide | Every breaking change with before/after code |
| Tool | What it does |
|---|---|
get_node_reference | Full API reference for any of 44+ node types — exact signatures, defaults, examples |
list_platforms | Supported platforms with their status, renderer, and framework |
get_platform_roadmap | Multi-platform status and timeline |
get_best_practices · get_animation_guide · get_gesture_guide · get_performance_tips · get_material_guide · get_collision_guide · get_model_optimization_guide · get_web_rendering_guide · get_troubleshooting · debug_issue
| Tool | What it does |
|---|---|
search_models | Searches Sketchfab for free 3D models (BYOK — set SKETCHFAB_API_KEY) |
generate_3d_model | Generates a brand-new GLB from a text prompt or image via Tripo AI (BYOK — set TRIPO_API_KEY) |
analyze_project | Scans a local SceneView project on disk — detects platform, extracts version, flags outdated deps and known anti-patterns |
search_android_docs | Searches Google's stock Android docs knowledge base (needs the android CLI on PATH) |
fetch_android_doc | Fetches a full Android docs entry by its kb://... URI (needs the android CLI on PATH) |
| Resource URI | What it provides |
|---|---|
sceneview://api | Complete SceneView 4.0.x API reference (the full llms.txt) |
sceneview://known-issues | Live open issues from GitHub (cached 10 min) |
search_models — find real 3D assets from the AIGenerated SceneView code is only useful if it points at an asset that actually exists. search_models queries Sketchfab's public search API and returns a shortlist with names, authors, licenses, thumbnails, triangle counts, and viewer/embed URLs that the assistant can drop straight into rememberModelInstance(modelLoader, ...) or embed as a live preview.
Bring your own key (BYOK). SceneView never proxies the request — you keep the rate limit and the cost stays at zero. To set it up:
SKETCHFAB_API_KEY in your MCP client config:{
"mcpServers": {
"sceneview": {
"command": "npx",
"args": ["-y", "sceneview-mcp"],
"env": { "SKETCHFAB_API_KEY": "YOUR_TOKEN_HERE" }
}
}
}
Call it like search_models({ query: "red sports car", category: "cars-vehicles", maxResults: 6 }). If the key is missing, the tool returns a clear message explaining how to get one instead of failing silently.
generate_3d_model — create brand-new 3D assets from the AIWhen no existing model fits, generate_3d_model closes the other half of the asset loop: it generates a fresh GLB from a text prompt (text→3D) or a source image (image→3D) via the Tripo AI API, then returns a direct GLB download URL plus license/attribution metadata — ready for rememberModelInstance(modelLoader, ...) and AR placement.
Two quality tiers:
quality | Tripo model | Topology | Latency | Approx. cost (July 2026) |
|---|---|---|---|---|
"fast" (default) | P1 (P1-20260311) | low-poly, AR-ready | ~25–30 s | ~$0.10–0.25 of your credits |
"hd" | H3.1 (v3.1-20260211) | quad mesh, detailed geometry + textures | up to ~100 s | ~$0.41 of your credits |
Bring your own key (BYOK). Exactly like search_models: SceneView never proxies the request or holds your key — generations are billed to your Tripo account. To set it up:
TRIPO_API_KEY in your MCP client config:{
"mcpServers": {
"sceneview": {
"command": "npx",
"args": ["-y", "sceneview-mcp"],
"env": { "TRIPO_API_KEY": "YOUR_KEY_HERE" }
}
}
}
Call it like generate_3d_model({ prompt: "a low-poly cactus in a striped pot" }) or generate_3d_model({ imageUrl: "https://example.com/chair.jpg", quality: "hd" }). Provide exactly one of prompt / imageUrl.
⚠️ The GLB download URL expires ~5 minutes after generation — download the file immediately and self-host it (e.g. copy it into your app's assets/models/). The tool result repeats this warning. Missing key, task failures, rate limits, and poll timeouts (2 min fast / 4 min hd cap) all return clear, actionable messages instead of hanging or crashing.
analyze_project — local project scanBecause the MCP server runs on the user's machine, analyze_project can read their project files directly. Given a path (default: process.cwd()), it:
build.gradle(.kts) with io.github.sceneview:sceneview (Android), Package.swift with SceneViewSwift (iOS), or package.json with sceneview-web (Web)..kt, .kts, .swift, .js, .ts) and up to 500 KB total, scanning for well-known anti-patterns: Filament/ModelLoader calls inside background coroutines, the LightNode(...) { ... } trailing-lambda bug, deprecated 2.x APIs (ArSceneView, TransformableNode, PlacementNode, ViewRenderable, loadModelAsync), and com.google.ar.sceneform.* imports.{ projectType, sceneViewVersion, latestVersion, isOutdated, warnings, suggestions } report, plus a Markdown summary.The tool is read-only, never writes to disk, and gracefully handles missing directories. Use it when the user asks "is my project up to date?" or as a quick sanity check before generating new code for an existing codebase.
The assistant calls get_ar_setup + get_sample("ar-model-viewer") and returns a complete, compilable Kotlin composable with all imports, Gradle dependencies, and manifest entries. Ready to paste into Android Studio.
The assistant calls get_ios_setup("3d") + get_sample("ios-model-viewer") and returns Swift code with the SPM dependency, Info.plist entries, and a working SwiftUI view.
The assistant calls get_node_reference("LightNode") and returns the exact function signature, parameter types, defaults, and a usage example — including the critical detail that apply is a named parameter, not a trailing lambda.
The assistant calls validate_code with the generated snippet and checks it against 30+ rules: symbol existence against the real public API (unknown imports, made-up node types, nonexistent loader methods — each with did-you-mean suggestions), threading violations, null safety, API correctness, lifecycle issues, deprecated APIs. Problems are flagged with explanations before the code reaches the user.
Without this MCP server, AI assistants regularly:
LightNode named-parameter gotcha (apply = not trailing lambda)rememberModelInstance (it returns null while loading)With this MCP server, AI assistants:
The MCP server is tested with 1,898 unit tests across 81 test suites covering:
llms.txt) Test Files 81 passed (81)
Tests 1898 passed (1898)
All tools work fully offline except sceneview://known-issues (GitHub API, cached 10 min), search_models (Sketchfab, BYOK), and generate_3d_model (Tripo AI, BYOK).
node --versionnpx sceneview-mcp — should start without errorsInstall Node.js from nodejs.org (LTS recommended). npm and npx are included.
The only network calls are to the GitHub API (for known issues), Sketchfab (when SKETCHFAB_API_KEY is set), and Tripo AI (when TRIPO_API_KEY is set and generate_3d_model is called). Everything else works offline.
{
"mcpServers": {
"sceneview": {
"command": "npx",
"args": ["-y", "sceneview-mcp"],
"env": {
"HTTPS_PROXY": "http://proxy.example.com:8080"
}
}
}
}
A small set of domain-specific tools is gated behind an optional subscription. They aren't required for general 3D/AR work — only useful if you happen to be building one of these specific verticals:
Plus 3 generation helpers: render_3d_preview, create_3d_artifact, generate_scene.
The base SDK and every developer tool listed above stay free, always.
If sceneview-mcp saves you time, consider sponsoring on GitHub Sponsors. Building this is a one-dev labor of love and donations keep the free tier covered.
Enabled by default on the free tier (MCP client name/version and tool names — no personal data, no prompt content). Opt out with SCENEVIEW_TELEMETRY=0. See PRIVACY.md for the full payload shape.
cd mcp
npm install
npm run prepare # Copy llms.txt + build TypeScript
npm test # 1898 tests
npm run dev # Start with tsx (hot reload)
mcp/
src/
index.ts # MCP server entry point
tools/handler.ts # Tool dispatcher (free + pro)
tiers.ts # Free vs Pro tier mapping
samples.ts # 33 compilable code samples (Kotlin + Swift)
validator.ts # Code validator (30+ rules)
node-reference.ts # Node type parser
guides.ts # Best practices, AR setup, roadmap, troubleshooting
migration.ts # v2 -> v3 -> v4 migration guide
preview.ts # 3D preview URL generator
artifact.ts # HTML artifact generator (model-viewer, charts, product 360)
issues.ts # GitHub issues fetcher (cached)
search-models.ts # Sketchfab BYOK search
generate-model.ts # Tripo BYOK text/image -> GLB generation
analyze-project.ts # Local project scanner
proxy.ts # Pro-tool proxy to hosted gateway
llms.txt # Bundled API reference (copied from repo root)
npm test — all 1898+ tests must passSee CONTRIBUTING.md for the full guide.
FAQs
MCP server for SceneView — cross-platform 3D & AR SDK for Android and iOS. Give Claude the full SceneView SDK so it writes correct, compilable code.
We found that sceneview-mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
/Security News
Popular npm packages keyv and cacheable compromised.

Security News
A misconfiguration gave three Anthropic models internet access, and one, believing it was in a simulation, shipped a credential-stealing package to PyPI.

Security News
/Company News
Socket has joined the new Composer and Packagist sponsorship program as a launch sponsor, supporting the team that keeps PHP's package ecosystem secure.