sketchfab-mcp-server
Search, browse, inspect, and download 3D models from Sketchfab via its API, including model metadata, categories, licenses, and multiple download formats (glTF, GLB, USDZ, source).
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@sketchfab-mcp-serversearch for low-poly trees downloadable"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
sketchfab-mcp-server
A Model Context Protocol server for Sketchfab. Search, browse, inspect, and download 3D models from Cursor, Claude Desktop, and other MCP clients.
API key required: All tools need a valid Sketchfab API token. Create one at sketchfab.com/settings/password (API token section). Pass it via
--api-key, theSKETCHFAB_API_KEYenvironment variable, or in your MCP client config.
Quick Start
Prerequisites
Node.js 18+ — Runtime for the MCP server
Yarn — Package manager (or use
npm/pnpmequivalently)Sketchfab API token — Required for search, model details, categories, licenses, and downloads
Git — For cloning the repository
Build from Source
Clone the repository:
git clone https://github.com/AliRezaBeigy/sketchfab-mcp-server.git
cd sketchfab-mcp-serverInstall dependencies and build:
yarn install
yarn buildRun locally (stdio transport):
# Option A: environment variable
export SKETCHFAB_API_KEY="your-api-token-here"
yarn start
# Option B: CLI flag
node build/index.js --api-key "your-api-token-here"Development (no build step):
export SKETCHFAB_API_KEY="your-api-token-here"
yarn devConfigure an MCP Client
Add the server to your MCP client settings. Use the absolute path to build/index.js on your machine.
Cursor — edit ~/.cursor/mcp.json (or project-level .cursor/mcp.json):
{
"mcpServers": {
"sketchfab": {
"command": "node",
"args": [
"/absolute/path/to/sketchfab-mcp-server/build/index.js"
],
"env": {
"SKETCHFAB_API_KEY": "your-api-token-here"
}
}
}
}Claude Desktop — edit claude_desktop_config.json:
{
"mcpServers": {
"sketchfab": {
"command": "node",
"args": [
"/absolute/path/to/sketchfab-mcp-server/build/index.js"
],
"env": {
"SKETCHFAB_API_KEY": "your-api-token-here"
}
}
}
}Alternatively, pass the API key as a CLI argument instead of env:
"args": [
"/absolute/path/to/sketchfab-mcp-server/build/index.js",
"--api-key",
"your-api-token-here"
]Restart the MCP client after saving. The server communicates over stdio; diagnostics are written to stderr only.
Windows
On Windows, use backslashes or forward slashes in paths inside mcp.json. PowerShell example for a one-off run:
$env:SKETCHFAB_API_KEY = "your-api-token-here"
node build\index.jsRelated MCP server: Blockbench MCP
MCP Tools
Tool | Description |
| Search models by keywords, tags, categories, license, user, and more |
| Full metadata for a model (stats, license, tags, downloadability) |
| Download a model as glTF, GLB, USDZ, or source (ZIP auto-extracts) |
| List category slugs for use in search filters |
| List license slugs for use in search filters |
Search filters include downloadable-only, animated, rigged, staff-picked, sort order, date range (1/7/31 days), and cursor-based pagination (up to 24 results per page).
Download formats: gltf (default), glb, usdz, source. If the requested format is unavailable, the server falls back to the first available format. ZIP archives (common for glTF/source) are saved and extracted automatically.
Features
Sketchfab API v3 — Search, browse, and download via the official REST API
Rich search — Tags, categories, licenses, sort, pagination, and creator filters
Model downloads — glTF/GLB/USDZ/source with automatic ZIP extraction
MCP-native — Works with Cursor, Claude Desktop, and any stdio MCP host
TypeScript — Typed tools with Zod parameter validation
License
See the project license file when available.
Acknowledgments
Sketchfab — 3D model platform and API
Model Context Protocol — Open standard for AI tool integration
@modelcontextprotocol/sdk — Official TypeScript MCP SDK
Made with ❤️ for 3D creators and AI-assisted workflows
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/AliRezaBeigy/sketchfab-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server