-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 916 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 916 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "meshy-ai-mcp-server",
"version": "1.0.0",
"description": "A Model Context Protocol server that wraps the Meshy AI API with TypeScript and Node.js tools, including rigging and animation endpoints.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"meshy-ai-mcp-server": "dist/index.js"
},
"files": [
"dist"
],
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node --esm src/index.ts",
"prepare": "npm run build"
},
"keywords": [
"mcp",
"meshy",
"3d",
"animation",
"rigging"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.22.0",
"dotenv": "^17.2.3",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^22.10.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=18"
}
}