-
Notifications
You must be signed in to change notification settings - Fork 849
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.83 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.83 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "gremlin-mcp",
"version": "4.0.0-alpha1",
"description": "The official Apache TinkerPop MCP server for Gremlin that allows for fetching status, schema, and querying using Gremlin for any TinkerPop-compatible graph database (TypeScript implementation).",
"type": "module",
"main": "dist/server.js",
"bin": {
"gremlin-mcp": "dist/server.js"
},
"scripts": {
"generate-step-names": "node scripts/generate-step-names.js",
"build": "npm run generate-step-names && tsc && chmod +x dist/server.js",
"dev": "tsx src/server.ts",
"start": "node dist/server.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:it": "GREMLIN_MCP_ENDPOINT=localhost:8182/g jest tests/integration --testPathIgnorePatterns=\"/node_modules/|/dist/\" --forceExit --detectOpenHandles",
"lint": "eslint src tests --ext .ts",
"lint:fix": "eslint src tests --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\" \"*.{js,json,md}\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\" \"*.{js,json,md}\"",
"type-check": "tsc --noEmit",
"validate": "npm run format && npm run lint && npm run type-check && npm test",
"clean": "rm -rf dist",
"prepare": "husky",
"prepublishOnly": "npm run clean && npm run build && npm run validate",
"prepack": "npm run build",
"postinstall": "chmod +x dist/server.js || true"
},
"keywords": [
"mcp",
"model-context-protocol",
"apache-tinkerpop",
"tinkerpop",
"gremlin",
"graph",
"database",
"graphdb"
],
"author": {
"name": "Apache TinkerPop team"
},
"license": "Apache-2.0",
"dependencies": {
"gremlint": "4.0.0-alpha1",
"@effect/platform": "^0.90.6",
"@effect/platform-node": "^0.96.0",
"@modelcontextprotocol/sdk": "^1.17.4",
"effect": "^3.17.9",
"gremlin": "4.0.0-alpha1",
"winston": "^3.17.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/js": "^10.0.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.3.0",
"audit-ci": "^7.1.0",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"jest": "^30.0.5",
"lint-staged": "^16.1.5",
"prettier": "^3.6.2",
"ts-jest": "^29.4.1",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"typescript-eslint": "^8.40.0"
},
"engines": {
"node": ">=22"
},
"repository": {
"type": "git",
"url": "https://github.com/apache/tinkerpop.git"
},
"bugs": {
"url": "https://issues.apache.org/jira/browse/TINKERPOP"
},
"homepage": "https://tinkerpop.apache.org/",
"files": [
"dist/",
"README.md",
"LICENSE",
"NOTICE"
],
"lint-staged": {
"*.{ts,js}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
}
}