https://github.com/eddydpyl/sketchfab_mcp
https://github.com/eddydpyl/sketchfab_mcp
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/eddydpyl/sketchfab_mcp
- Owner: Eddydpyl
- Created: 2025-03-06T14:23:01.000Z (7 months ago)
- Default Branch: master
- Last Pushed: 2025-03-06T14:40:44.000Z (7 months ago)
- Last Synced: 2025-03-06T15:35:10.442Z (7 months ago)
- Language: Python
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sketchfab MCP
A microservice for interacting with the Sketchfab API using MCP (Model Control Protocol).
## Features
- Search for downloadable models on Sketchfab
- Download a model from Sketchfab given a UID## Environment Variables
- `SKETCHFAB_API_TOKEN`: Your Sketchfab API token
## How to use
1. Create an Sketchfab account: https://sketchfab.com/
1. You can find your Sketchfab API Token at: https://sketchfab.com/settings/password
3. Add the following MCP server as a command in Cursor:```bash
env SKETCHFAB_API_TOKEN=PLACEHOLDER uvx sketchfab-mcp
```## Running with Docker
```bash
docker build -t sketchfab-mcp .
docker run -it --rm -p 8000:8000 -e SKETCHFAB_API_TOKEN=PLACEHOLDER sketchfab-mcp
```