Skip to content

Commit 4c2fa1c

Browse files
committed
Add screenshots to readme
1 parent f67d6cf commit 4c2fa1c

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-3
lines changed

servers/mcp-neo4j-memory/README.md

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,26 @@ The MCP server leverages Neo4j's graph database capabilities to create an interc
1515
* `Memory` - A node representing an entity with a name, type, and observations.
1616
* `Relationship` - A relationship between two entities with a type.
1717

18+
### Usage Example
19+
20+
```
21+
Let's add some memories
22+
I, Michael, living in Dresden, Germany work at Neo4j which is headquartered in Sweden with my colleagues Andreas (Cambridge, UK) and Oskar (Gothenburg, Sweden)
23+
I work in Product Management, Oskar in Engineering and Andreas in Developer Relations.
24+
```
25+
26+
Results in Claude calling the create_entities and create_relations tools.
27+
28+
![](./docs/images/employee_create_entities_and_relations.png)
29+
30+
![](./docs/images/employee_graph.png)
31+
1832
## Components
1933

34+
<!--
2035
### Resources
21-
2236
### Prompts
23-
37+
-->
2438
### Tools
2539

2640
The server offers these core tools:
517 KB
Loading
337 KB
Loading

servers/mcp-neo4j-memory/src/mcp_neo4j_memory/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def create_fulltext_index(self):
6262
async def load_graph(self, filter_query="*"):
6363
query = """
6464
CALL db.index.fulltext.queryNodes('search', $filter) yield node as entity, score
65-
OPTIONAL MATCH (entity)-[r]->(other)
65+
OPTIONAL MATCH (entity)-[r]-(other)
6666
RETURN collect(distinct {
6767
name: entity.name,
6868
type: entity.type,

0 commit comments

Comments
 (0)