Fire in da houseTop Tip:Paying $100+ per month for Perplexity, MidJourney, Runway, ChatGPT and other tools is crazy - get all your AI tools in one site starting at $15 per month with Galaxy AI Fire in da houseCheck it out free

sketchfab-mcp-server

MCP.Pizza Chef: gregkop

The sketchfab-mcp-server is a Model Context Protocol server that integrates with Sketchfab's 3D model platform. It enables users to search for 3D models by keywords, tags, and categories, view detailed information about models, and download them in multiple formats such as gltf, glb, usdz, and source. This server requires a Sketchfab API key and Node.js 18+ to run, providing seamless access to Sketchfab's extensive 3D asset library through LLMs like Claude or Cursor.

Use This MCP server To

Search Sketchfab 3D models by keywords and categories Retrieve detailed metadata for specific 3D models Download 3D models in gltf, glb, usdz, or source formats Integrate Sketchfab model data into AI workflows Enable LLMs to access and manipulate 3D assets dynamically Automate 3D asset retrieval for design or development projects

README

Sketchfab MCP Server

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.

Features

  • Search for 3D Models: Find models on Sketchfab using keywords, tags, and categories
  • View Model Details: Get comprehensive information about specific models
  • Download Models: Download models in various formats (gltf, glb, usdz, source)

Prerequisites

  • Node.js 18 or higher
  • A Sketchfab API key (for authentication)

Installation

  1. Clone this repository
  2. Install dependencies:
    npm install
    
  3. Build the project:
    npm run build
    

Usage

Running the MCP Server

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

Available Tools

1. sketchfab-search

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 models
  • limit (optional): Maximum number of results to return (1-24, default: 10)
2. sketchfab-model-details

Get detailed information about a specific Sketchfab model.

Parameters:

  • modelId: The unique ID of the Sketchfab model
3. sketchfab-download

Download a 3D model from Sketchfab.

Parameters:

  • modelId: The unique ID of the Sketchfab model to download
  • format (optional): Preferred format to download the model in (gltf, glb, usdz, source)
  • outputPath (optional): Local directory or file path to save the downloaded file

Using with Cursor

  1. Go to Cursor Settings -> MCP -> Add new MCP server
  2. Configure your MCP:
    • Name: Sketchfab MCP
    • Type: command
    • Command: node /path/to/build/index.js --api-key YOUR_API_KEY

Using with Claude Desktop

Add the following MCP config to your Claude Desktop configuration:

{
  "mcpServers": {
    "sketchfab": {
      "command": "node",
      "args": ["/path/to/build/index.js", "--api-key", "YOUR_API_KEY"]
    }
  }
}

Environment Variables

You can set the following environment variables:

  • SKETCHFAB_API_KEY: Your Sketchfab API key (alternative to passing it with the --api-key parameter)

License

ISC

sketchfab-mcp-server FAQ

How do I authenticate the sketchfab-mcp-server?
You must provide a Sketchfab API key via the --api-key parameter or SKETCHFAB_API_KEY environment variable.
What Node.js version is required to run this MCP server?
Node.js version 18 or higher is required.
Can I download 3D models in multiple formats?
Yes, supported formats include gltf, glb, usdz, and source files.
How do I start the sketchfab-mcp-server?
After installation and build, run `npm start` or `node build/index.js --api-key YOUR_API_KEY`.
Is this MCP server compatible with multiple LLM providers?
Yes, it works with LLMs like Claude, Cursor, and others supporting MCP.
Can I search models by tags or categories?
Yes, the server supports searching by keywords, tags, and categories.
What happens if I don't provide an API key?
The server will not authenticate with Sketchfab and cannot fetch model data.
Can this MCP server be integrated into custom AI workflows?
Yes, it enables dynamic access to Sketchfab's 3D models for AI-enhanced applications.