{
"name": "sketchfab-mcp-server",
"version": "1.0.10",
"description": "A Model Context Protocol (MCP) server for interacting with Sketchfab to find & download 3D models",
"type": "module",
"main": "build/index.js",
"bin": {
"sketchfab-mcp": "build/index.js",
"sketchfab-mcp-server": "build/index.js"
},
"files": [
"build"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"dev": "tsx src/index.ts",
"lint": "eslint . --ext .ts",
"test": "vitest",
"prepublishOnly": "npm run build",
"link": "npm link",
"unlink": "npm unlink"
},
"keywords": [
"mcp",
"sketchfab",
"3d",
"models",
"3d-models",
"3d-assets",
"model-context-protocol"
],
"author": {
"name": "Greg Kopyltsov",
"url": "https://x.com/gregkop"
},
"homepage": "https://x.com/gregkop",
"repository": {
"type": "git",
"url": "https://github.com/gregkop/sketchfab-mcp-server.git"
},
"license": "ISC",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.5.0",
"adm-zip": "^0.5.16",
"axios": "^1.6.7",
"yargs": "^17.7.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/adm-zip": "^0.5.7",
"@types/node": "^22.13.5",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitest/coverage-v8": "^1.0.0",
"eslint": "^8.0.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vite": "^5.0.0",
"vitest": "^1.0.0"
}
}