This is an MCP (Model Context Protocol) Server for discovering and downloading 3D models
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"sketchfab-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server for interacting with Sketchfab's 3D model platform. This MCP allows you to search, view details, and download 3D models from Sketchfab directly through Claude or Cursor.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in design / entertainment
MCP server for accessing Figma plugin console logs and screenshots via Cloudflare Workers or local mode
Official Miro MCP server - Supports context to code and creating diagrams, docs, and data tables.
A mcp server to allow LLMS gain context about shadcn ui component structure,usage and installation,compaitable with react,svelte 5,vue & React Native
The official MCP Server for the Mux API
MCP Security Weekly
Get CVE alerts and security updates for Sketchfab Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server for interacting with Sketchfab's 3D model platform. This MCP allows you to search, view details, and download 3D models from Sketchfab directly through Claude or Cursor.
npm install
npm run build
npm start
To provide your Sketchfab API key, use the --api-key parameter:
node build/index.js --api-key YOUR_API_KEY
Alternatively, you can set the SKETCHFAB_API_KEY environment variable:
export SKETCHFAB_API_KEY=YOUR_API_KEY
npm start
Search for 3D models on Sketchfab based on keywords and filters.
Parameters:
query (optional): Text search query (e.g., "car", "house", "character")tags (optional): Filter by specific tags (e.g., ["animated", "rigged", "pbr"])categories (optional): Filter by categories (e.g., ["characters", "architecture", "vehicles"])downloadable (optional): Set to true to show only downloadable modelslimit (optional): Maximum number of results to return (1-24, default: 10)Get detailed information about a specific Sketchfab model.
Parameters:
modelId: The unique ID of the Sketchfab modelDownload a 3D model from Sketchfab.
Parameters:
modelId: The unique ID of the Sketchfab model to downloadformat (optional): Preferred format to download the model in (gltf, glb, usdz, source)outputPath (optional): Local directory or file path to save the downloaded filenode /path/to/build/index.js --api-key YOUR_API_KEYAdd the following MCP config to your Claude Desktop configuration:
{
"mcpServers": {
"sketchfab": {
"command": "node",
"args": ["/path/to/build/index.js", "--api-key", "YOUR_API_KEY"]
}
}
}
You can set the following environment variables:
SKETCHFAB_API_KEY: Your Sketchfab API key (alternative to passing it with the --api-key parameter)ISC