Skip to content

Commit e100887

Browse files
authored
Add Gemini Extension (#188)
* add gemini extensionadd gemini extension * changing command * fiddling with extension * fix json * add memory * better naming * add number 3 * missing curly * add number 4 * add stdio * trying a rename of server * trying http * switch to default transport * fix readme format * change naming to be consistent with directories * readme * readme updates * trying rename of aura executable * update readme * update license
1 parent 95207cd commit e100887

File tree

3 files changed

+50
-1
lines changed

3 files changed

+50
-1
lines changed

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) [year] [fullname]
3+
Copyright (c) 2024-2025 Neo4j
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

gemini-extension.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "mcp-neo4j",
3+
"version": "1.0.0",
4+
"mcpServers": {
5+
"mcp-neo4j-cloud-aura-api": {
6+
"command": "uvx",
7+
"args": [ "mcp-neo4j-aura-manager" ]
8+
},
9+
"mcp-neo4j-cypher": {
10+
"command": "uvx",
11+
"args": [ "mcp-neo4j-cypher" ]
12+
},
13+
"mcp-neo4j-data-modeling": {
14+
"command": "uvx",
15+
"args": [ "mcp-neo4j-data-modeling" ]
16+
},
17+
"mcp-neo4j-memory": {
18+
"command": "uvx",
19+
"args": [ "mcp-neo4j-memory" ]
20+
}
21+
}
22+
}

gemini-extension/GEMINI.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Neo4j MCP Server
2+
3+
This is an extension that runs the Neo4j MCP server.
4+
5+
## Install
6+
7+
To get started run the command:
8+
9+
gemini extensions install https://github.com/neo4j-contrib/mcp-neo4j.git
10+
11+
The servers require various environmental variables. You can set those on the command line.
12+
13+
You can then run:
14+
15+
gemini
16+
17+
Assuming everything went well, you should be able to view 4 Neo4j related tools. You will need to set environmental variables to run them.
18+
19+
## Uninstall
20+
21+
To uninstall run:
22+
23+
gemini extensions uninstall mcp-neo4j
24+
25+
## To do
26+
27+
Currently the mcp-neo4j-memory tools aren't coming up. We're working to resolve this issue.

0 commit comments

Comments
 (0)