@henrychong-ai/mcp-neo4j-knowledge-graph 2.1.1 → 2.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/LICENSE +2 -1
  2. package/README.md +8 -13
  3. package/package.json +17 -14
package/LICENSE CHANGED
@@ -1,6 +1,7 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2025-2026 Henry Chong (henrychong-ai@gmail.com)
3
+ Copyright (c) 2025 Gannon Hall (original implementation)
4
+ Copyright (c) 2025-2026 Henry Chong (enhancements, temporal versioning, and maintenance)
4
5
 
5
6
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
7
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -4,7 +4,10 @@ Scalable, high-performance knowledge graph memory system with semantic retrieval
4
4
 
5
5
  **Maintained by** [Henry Chong](https://github.com/henrychong-ai)
6
6
 
7
- [![CI/CD](https://github.com/henrychong-ai/mcp-neo4j-knowledge-graph/actions/workflows/ci-cd.yml/badge.svg)](https://github.com/henrychong-ai/mcp-neo4j-knowledge-graph/actions/workflows/ci-cd.yml)
7
+ [![npm version](https://img.shields.io/npm/v/@henrychong-ai/mcp-neo4j-knowledge-graph)](https://www.npmjs.com/package/@henrychong-ai/mcp-neo4j-knowledge-graph)
8
+ [![CI](https://github.com/henrychong-ai/mcp-neo4j-knowledge-graph/actions/workflows/ci-cd.yml/badge.svg)](https://github.com/henrychong-ai/mcp-neo4j-knowledge-graph/actions/workflows/ci-cd.yml)
9
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
10
+ [![Node.js](https://img.shields.io/badge/Node.js-%3E%3D24-green)](https://nodejs.org/)
8
11
 
9
12
  ---
10
13
 
@@ -640,7 +643,7 @@ curl http://localhost:9091/metrics
640
643
 
641
644
  #### Production Deployment
642
645
 
643
- For production deployments (e.g., vps-2), configure Prometheus to scrape the metrics endpoint:
646
+ For production deployments, configure Prometheus to scrape the metrics endpoint:
644
647
 
645
648
  ```yaml
646
649
  scrape_configs:
@@ -973,21 +976,13 @@ docker run -d \
973
976
  pnpm run neo4j:init
974
977
  ```
975
978
 
976
- ## Package Information
979
+ ## Contributing
977
980
 
978
- This package is maintained in a private GitHub repository but published publicly to npm:
979
-
980
- - **npm Package**: [@henrychong-ai/mcp-neo4j-knowledge-graph](https://www.npmjs.com/package/@henrychong-ai/mcp-neo4j-knowledge-graph)
981
- - **Installation**: `pnpm install @henrychong-ai/mcp-neo4j-knowledge-graph`
982
- - **Published Contents**: Compiled JavaScript (dist/), documentation, and type definitions
983
- - **License**: MIT
984
- - **Automated Publishing**: GitHub Actions with OIDC authentication
985
-
986
- The npm package includes everything needed to use this MCP server - compiled code, documentation, and type definitions. Source TypeScript files and development tooling remain in the private repository.
981
+ Contributions are welcome! See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.
987
982
 
988
983
  ## License
989
984
 
990
- MIT
985
+ [MIT](LICENSE) - See the LICENSE file for details.
991
986
 
992
987
  ## Acknowledgments
993
988
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@henrychong-ai/mcp-neo4j-knowledge-graph",
3
- "version": "2.1.1",
3
+ "version": "2.2.1",
4
4
  "description": "Neo4j-based knowledge graph MCP server with temporal versioning and semantic search",
5
5
  "license": "MIT",
6
6
  "author": "Henry Chong <henry@henrychong.ai>",
@@ -55,37 +55,40 @@
55
55
  "embeddings:test": "tsx src/cli/generate-embeddings.ts -- --limit 5"
56
56
  },
57
57
  "dependencies": {
58
- "@modelcontextprotocol/sdk": "^1.26.0",
59
- "axios": "^1.13.4",
60
- "dotenv": "^16.6.1",
61
- "lru-cache": "^11.2.5",
58
+ "@modelcontextprotocol/sdk": "^1.27.1",
59
+ "axios": "^1.13.6",
60
+ "dotenv": "^17.3.1",
61
+ "lru-cache": "^11.2.6",
62
62
  "neo4j-driver": "^6.0.1",
63
- "node-cron": "^3.0.3",
63
+ "node-cron": "^4.2.1",
64
64
  "prom-client": "^15.1.3",
65
- "uuid": "^11.1.0",
65
+ "uuid": "^13.0.0",
66
66
  "zod": "^4.3.6"
67
67
  },
68
68
  "devDependencies": {
69
- "@biomejs/biome": "^2.3.15",
69
+ "@biomejs/biome": "^2.4.2",
70
70
  "@types/node": "^24.10.9",
71
71
  "@types/node-cron": "^3.0.11",
72
- "@types/uuid": "^10.0.0",
73
72
  "@vitest/coverage-v8": "^4.0.18",
74
73
  "husky": "^9.1.7",
75
- "lint-staged": "^16.2.7",
76
- "oxlint": "^1.47.0",
74
+ "lint-staged": "^16.3.2",
75
+ "oxlint": "^1.48.0",
77
76
  "shx": "^0.4.0",
78
77
  "tsx": "^4.21.0",
79
78
  "typescript": "^5.9.3",
80
79
  "vitest": "^4.0.18"
81
80
  },
82
- "packageManager": "pnpm@10.28.2",
81
+ "packageManager": "pnpm@10.30.0",
83
82
  "engines": {
84
83
  "node": ">=24.0.0"
85
84
  },
86
85
  "pnpm": {
87
86
  "overrides": {
88
- "@isaacs/brace-expansion": ">=5.0.1"
87
+ "@isaacs/brace-expansion": ">=5.0.1",
88
+ "rollup": ">=4.59.0",
89
+ "ajv": ">=8.18.0",
90
+ "hono": ">=4.11.10",
91
+ "qs": ">=6.14.2"
89
92
  }
90
93
  },
91
94
  "lint-staged": {
@@ -93,7 +96,7 @@
93
96
  "oxlint --fix --max-warnings=0",
94
97
  "biome format --write"
95
98
  ],
96
- "*.{json,md,yml,yaml}": [
99
+ "*.json": [
97
100
  "biome format --write"
98
101
  ]
99
102
  }