-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathmanifest.json
More file actions
130 lines (130 loc) · 3.64 KB
/
manifest.json
File metadata and controls
130 lines (130 loc) · 3.64 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"manifest_version": "0.3",
"name": "neo4j-mcp",
"version": "1.0.0",
"description": "Official Model Context Protocol (MCP) server for Neo4j.",
"author": {
"name": "Neo4j",
"url": "https://neo4j.com/"
},
"homepage": "https://github.com/neo4j/mcp",
"documentation": "https://neo4j.com/docs/mcp/",
"support": "https://github.com/neo4j/mcp/issues",
"user_config": {
"NEO4J_URI": {
"type": "string",
"title": "Connection URI",
"description": "Connection URI (e.g., bolt://localhost:7687)",
"required": true,
"sensitive": false
},
"NEO4J_USERNAME": {
"type": "string",
"title": "Neo4j username",
"description": "Neo4j username (e.g., neo4j)",
"required": true,
"sensitive": false
},
"NEO4J_PASSWORD": {
"type": "string",
"title": "Neo4j password",
"description": "Neo4j password",
"required": true,
"sensitive": true
},
"NEO4J_DATABASE": {
"type": "string",
"title": "Database name",
"description": "Database name (e.g., neo4j)",
"required": false,
"sensitive": false
},
"NEO4J_READ_ONLY": {
"type": "boolean",
"title": "Readonly flag",
"description": "Set to true to disable write tools",
"required": false,
"sensitive": false
},
"NEO4J_TELEMETRY": {
"type": "boolean",
"title": "Telemetry",
"description": "Set to false to disable telemetry (default true)",
"required": false,
"sensitive": false
},
"NEO4J_LOG_LEVEL": {
"type": "string",
"title": "Log Level",
"description": "Log level (e.g., debug, info, notice, warning, error, critical, alert, emergency)",
"required": false,
"sensitive": false
},
"NEO4J_LOG_FORMAT": {
"type": "string",
"title": "Log Format",
"description": "Log output format: text or json (default text)",
"required": false,
"sensitive": false
},
"NEO4J_SCHEMA_SAMPLE_SIZE": {
"type": "string",
"title": "Schema inference sample size",
"description": "Number of nodes to sample for schema inference",
"required": false,
"sensitive": false
}
},
"server": {
"type": "binary",
"entry_point": "neo4j-mcp",
"mcp_config": {
"command": "${__dirname}${/}bin/neo4j-mcp",
"env": {
"NEO4J_URI": "${user_config.NEO4J_URI}",
"NEO4J_USERNAME": "${user_config.NEO4J_USERNAME}",
"NEO4J_PASSWORD": "${user_config.NEO4J_PASSWORD}",
"NEO4J_DATABASE": "${user_config.NEO4J_DATABASE}",
"NEO4J_READ_ONLY": "${user_config.NEO4J_READ_ONLY}",
"NEO4J_TELEMETRY": "${user_config.NEO4J_TELEMETRY}",
"NEO4J_LOG_LEVEL": "${user_config.NEO4J_LOG_LEVEL}",
"NEO4J_LOG_FORMAT": "${user_config.NEO4J_LOG_FORMAT}",
"NEO4J_SCHEMA_SAMPLE_SIZE": "${user_config.NEO4J_SCHEMA_SAMPLE_SIZE}"
}
}
},
"tools": [
{
"name": "get-schema",
"description": "Introspect labels, relationship types, property keys"
},
{
"name": "read-cypher",
"description": "Execute arbitrary Cypher (read mode)"
},
{
"name": "write-cypher",
"description": "Execute arbitrary Cypher (write mode)"
},
{
"name": "list-gds-procedures",
"description": "List GDS procedures available in the instance"
}
],
"compatibility": {
"platforms": ["darwin", "linux", "win32"]
},
"keywords": [
"Neo4j",
"MCP",
"Neo4j MCP",
"Neo4j MCP Server",
"Neo4j Official MCP Server",
"neo4j-mcp"
],
"license": "GPL",
"repository": {
"type": "git",
"url": "https://github.com/neo4j/mcp"
}
}