Skip to main content
Glama
AliRezaBeigy

sketchfab-mcp-server

by AliRezaBeigy

sketchfab-mcp-server

Node.js TypeScript MCP Sketchfab

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, the SKETCHFAB_API_KEY environment variable, or in your MCP client config.

Quick Start

Prerequisites

  • Node.js 18+ — Runtime for the MCP server

  • Yarn — Package manager (or use npm / pnpm equivalently)

  • 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-server

Install dependencies and build:

yarn install
yarn build

Run 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 dev

Configure 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.js

Related MCP server: Blockbench MCP

MCP Tools

Tool

Description

sketchfab-search

Search models by keywords, tags, categories, license, user, and more

sketchfab-model-details

Full metadata for a model (stats, license, tags, downloadability)

sketchfab-download

Download a model as glTF, GLB, USDZ, or source (ZIP auto-extracts)

sketchfab-list-categories

List category slugs for use in search filters

sketchfab-list-licenses

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


Made with ❤️ for 3D creators and AI-assisted workflows

Available Tools

5 tools
sketchfab-downloadB

Download a 3D model from Sketchfab

ParametersJSON Schema
NameRequiredDescriptionDefault
formatNoPreferred format to download the model in (defaults to gltf if available)
modelIdYesThe unique ID of the Sketchfab model to download (must be downloadable)
outputPathNoLocal directory or file path to save the downloaded file (will use temp directory if not specified)

TDQS

B3.1/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries full burden for behavioral disclosure. It only says 'download' but does not specify that the tool may overwrite files, requires network access, or what happens if the model is not downloadable or the format is unavailable.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single concise sentence with no wasted words. However, it could include a few more details without becoming verbose, such as indicating the output is a file.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Missing important context: no description of return value (e.g., saved file path), no error handling info, and no note about whether the tool checks for model availability before downloading. Despite having only 3 parameters, the description is too minimal for safe agent use.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so each parameter has a description. The tool description adds no additional meaning beyond what is in the schema. The default behavior for format and outputPath is already stated in the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'Download a 3D model from Sketchfab', which is a specific verb+resource combination and distinguishes it from sibling tools that list categories, licenses, search, or get model details.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this tool versus alternatives, no prerequisites (e.g., model must be downloadable), and no context about the required modelId coming from a search or list tool.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

sketchfab-list-categoriesA

List Sketchfab model categories with slugs for use in search filters

ParametersJSON Schema
NameRequiredDescriptionDefault
sortByNoOptional sort order for the category list

TDQS

A3.6/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries full burden. It only states the basic operation (list) without disclosing additional traits such as read-only nature, authentication needs, rate limits, or response format.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence with no wasted words. Every word serves a purpose.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (list with one optional parameter) and lack of output schema, the description is mostly complete. It could mention if the list is exhaustive or paginated, but the context is sufficient for an agent to understand its purpose.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with one parameter (sortBy) fully described in the schema. The description adds no additional meaning beyond what the schema provides, so the baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('List'), the resource ('Sketchfab model categories'), and the purpose ('for use in search filters'). It distinguishes from sibling tools like search, download, etc.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage as a helper for search filters but does not explicitly state when to use this tool versus alternatives or when not to use it. No exclusion criteria are provided.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

sketchfab-list-licensesA

List Sketchfab model licenses with slugs for use in search filters

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.2/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided; the description only states the action. It lacks details on behavioral traits like ordering, caching, or completeness of the list.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single, concise sentence that is front-loaded and contains no unnecessary words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a parameterless tool with no output schema, the description adequately conveys purpose but could mention the format or scope of the returned licenses.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

No parameters exist, so the description does not need to explain them. Baseline score of 4 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool lists Sketchfab model licenses with slugs for search filters, differentiating from siblings like list-categories and search.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description indicates usage for obtaining license slugs to filter searches, providing context but not explicitly stating when not to use or listing alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

sketchfab-model-detailsB

Get detailed information about a specific Sketchfab model

ParametersJSON Schema
NameRequiredDescriptionDefault
modelIdYesThe unique ID of the Sketchfab model (found in URLs or search results)

TDQS

B3.2/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries full burden but only says 'detailed information' without explaining what behavior to expect (e.g., does it require authentication? Are there rate limits?). It lacks behavioral context.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Single sentence, 9 words, no fluff. Front-loaded with the action, efficient for a simple tool.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

No output schema exists, and the description does not hint at what 'detailed information' includes (e.g., metadata, stats, file URLs). For a tool returning model details, the description should outline the scope of the response.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% and the parameter description is informative. The tool description does not add additional semantic meaning beyond what the schema already provides, so baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Get detailed information') and resource ('specific Sketchfab model'). It is distinct from sibling tools like sketchfab-search (list) and sketchfab-download (file retrieval).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No explicit guidance on when to use this tool versus alternatives. The description does not mention prerequisites, limitations, or cases where another sibling tool would be more appropriate.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 5 tool updatesv1.0.0
    • First observedsketchfab-download
    • First observedsketchfab-list-categories
    • First observedsketchfab-list-licenses
    • First observedsketchfab-model-details
    • First observedsketchfab-search

TDQS

A3.7/5.0

Scored across 5 tools

Disambiguation5/5

Each tool targets a distinct function: search, details, download, categories, licenses. No overlap or ambiguity.

Naming Consistency4/5

All tools start with 'sketchfab-' and most use verb_noun pattern (list-categories, list-licenses), but 'sketchfab-model-details' uses noun_noun, a slight deviation.

Tool Count5/5

5 tools is well-scoped for a Sketchfab server, providing essential operations without unnecessary bloat.

Completeness4/5

Coverage includes search, details, download, and supporting list operations for filters. Missing upload or modify, but appropriate for a read-focused server.

Maintenance

ActivityInactive
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers