@henrychong-ai/mcp-neo4j-knowledge-graph 1.1.1 → 1.1.2
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.
- package/README.md +16 -29
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -20,25 +20,20 @@ npx @henrychong-ai/mcp-neo4j-knowledge-graph
|
|
|
20
20
|
|
|
21
21
|
This method is recommended for use with Claude Desktop and other MCP-compatible clients.
|
|
22
22
|
|
|
23
|
-
###
|
|
23
|
+
### npm Installation
|
|
24
24
|
|
|
25
|
-
For
|
|
25
|
+
For local use or development:
|
|
26
26
|
|
|
27
27
|
```bash
|
|
28
|
-
#
|
|
29
|
-
|
|
30
|
-
cd mcp-neo4j-knowledge-graph
|
|
28
|
+
# Install the package
|
|
29
|
+
npm install -g @henrychong-ai/mcp-neo4j-knowledge-graph
|
|
31
30
|
|
|
32
|
-
#
|
|
33
|
-
npm install
|
|
34
|
-
|
|
35
|
-
# Build the project
|
|
36
|
-
npm run build
|
|
37
|
-
|
|
38
|
-
# Run tests
|
|
39
|
-
npm test
|
|
31
|
+
# Or use locally in your project
|
|
32
|
+
npm install @henrychong-ai/mcp-neo4j-knowledge-graph
|
|
40
33
|
```
|
|
41
34
|
|
|
35
|
+
> **Note**: This package is maintained in a private GitHub repository but published publicly to npm. The compiled code, documentation, and full functionality are available through npm installation.
|
|
36
|
+
|
|
42
37
|
---
|
|
43
38
|
|
|
44
39
|
## Core Concepts
|
|
@@ -665,25 +660,17 @@ docker-compose up -d neo4j
|
|
|
665
660
|
npm run neo4j:init
|
|
666
661
|
```
|
|
667
662
|
|
|
668
|
-
##
|
|
663
|
+
## Package Information
|
|
669
664
|
|
|
670
|
-
|
|
671
|
-
# Clone the repository
|
|
672
|
-
git clone https://github.com/henrychong-ai/mcp-neo4j-knowledge-graph.git
|
|
673
|
-
cd mcp-neo4j-knowledge-graph
|
|
665
|
+
This package is maintained in a private GitHub repository but published publicly to npm:
|
|
674
666
|
|
|
675
|
-
|
|
676
|
-
npm install
|
|
667
|
+
- **npm Package**: [@henrychong-ai/mcp-neo4j-knowledge-graph](https://www.npmjs.com/package/@henrychong-ai/mcp-neo4j-knowledge-graph)
|
|
668
|
+
- **Installation**: `npm install @henrychong-ai/mcp-neo4j-knowledge-graph`
|
|
669
|
+
- **Published Contents**: Compiled JavaScript (dist/), documentation, and type definitions
|
|
670
|
+
- **License**: MIT
|
|
671
|
+
- **Automated Publishing**: GitHub Actions with OIDC authentication
|
|
677
672
|
|
|
678
|
-
|
|
679
|
-
npm run build
|
|
680
|
-
|
|
681
|
-
# Run tests
|
|
682
|
-
npm test
|
|
683
|
-
|
|
684
|
-
# Check test coverage
|
|
685
|
-
npm run test:coverage
|
|
686
|
-
```
|
|
673
|
+
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.
|
|
687
674
|
|
|
688
675
|
## License
|
|
689
676
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@henrychong-ai/mcp-neo4j-knowledge-graph",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
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>",
|