-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.59 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.59 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
98
99
100
{
"name": "@falkordb/mcpserver",
"version": "0.0.0-dev",
"description": "Model Context Protocol server for FalkorDB graph databases - enables AI assistants to query and manage graph data using natural language",
"main": "dist/index.js",
"type": "module",
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FalkorDB/FalkorDB-MCPServer.git"
},
"bugs": {
"url": "https://github.com/FalkorDB/FalkorDB-MCPServer/issues"
},
"homepage": "https://github.com/FalkorDB/FalkorDB-MCPServer#readme",
"author": {
"name": "Katie Mulliken",
"email": "[email protected]",
"url": "https://github.com/SecKatie"
},
"license": "MIT",
"keywords": [
"mcp",
"model-context-protocol",
"falkordb",
"graph-database",
"knowledge-graph",
"ai",
"claude",
"opencypher",
"cypher",
"graph",
"database",
"typescript",
"server",
"chatbot",
"llm",
"anthropic",
"neo4j",
"graph-query"
],
"files": [
"dist/**/*",
"README.md",
"LICENSE",
".env.example"
],
"bin": {
"falkordb-mcp": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "nodemon --watch 'src/**/*.ts' --exec 'npm run build && npm start'",
"dev:ts": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --coverage --ci --watchAll=false",
"inspect": "npm run build && npx -y @modelcontextprotocol/inspector node $PWD/dist/index.js",
"clean": "rm -rf dist coverage",
"prepublishOnly": "npm run clean && npm run test:ci && npm run lint && npm run build"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^25.3.0",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"eslint": "^10.0.1",
"jest": "^30.0.5",
"nodemon": "^3.1.10",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.0",
"dotenv": "^17.2.1",
"falkordb": "^6.3.0",
"platformdirs": "^4.3.8-rc3",
"zod": "^4.3.6"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"overrides": {
"minimatch": "^10.2.1",
"test-exclude": "^7.0.2"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/SecKatie"
}
}