-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.47 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.47 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@datocms/mcp",
"version": "2.0.5",
"main": "dist/src/index.js",
"type": "module",
"bin": "./bin/stdio",
"scripts": {
"format": "npx @biomejs/biome check --write --unsafe",
"build": "npx rimraf dist && tsc",
"prepublish": "npm run build",
"test": "npm run build && vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"start": "npm run build && ./bin/stdio",
"build:mcpb": "./scripts/build-mcpb.sh"
},
"author": "Stefano Verna (s.verna@datocms.com)",
"license": "MIT",
"description": "Model Context Protocol server for DatoCMS",
"repository": {
"type": "git",
"url": "https://github.com/datocms/mcp.git"
},
"homepage": "https://github.com/datocms/mcp",
"keywords": [
"mcp",
"model-context-protocol",
"datocms",
"cms",
"ai",
"claude"
],
"files": [
"dist",
"bin"
],
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@datocms/cma-client-node": "^5.1.29",
"@datocms/rest-api-reference": "^5.4.1",
"@datocms/dashboard-client": "^5.3.0",
"@modelcontextprotocol/sdk": "^1.15.1",
"@toon-format/toon": "^1.0.0",
"dedent": "^1.6.0",
"env-paths": "^3.0.0",
"fastest-levenshtein": "^1.0.16",
"node-jq": "^6.3.1",
"open": "^11.0.0",
"serialize-error": "^12.0.0",
"typescript": "^5.8.3",
"zod": "^3.25.76"
},
"devDependencies": {
"@anthropic-ai/mcpb": "^2.0.1",
"@types/node": "^24.0.14",
"@vitest/ui": "^4.0.8",
"dotenv": "^16.6.1",
"np": "^10.2.0",
"rimraf": "^6.0.1",
"vitest": "^4.0.8"
}
}