Unable to retrieve memories
Hey guys - I appreciate that you made first the 4o-mini the standard model and I can see that 4.1-mini is now the standard model.
I am trying to now setup the tool again and i resumed my neo4j database and i am doing everything by the book - but the cursor agent cannot find ANY trace of knowledge in my existing databse. Which is VERY frustrating seeing that it cost me quite a bit of time and tokens to set up.
I've done both Docker and just local uv/sse connection setup.
The agent connects to the database and can add memories and also retrieve them - but is absolutely blind to all my nodes and connections existing in the database.
The little island marked in red is the "test episodes" added by Cursor agent - and it's the only thing it can see.
Am I missing anything here?
The current DB cost me around 60 million tokens and about 180 USD to setup, so I am pretty sad I can't use it.
You'll need to restart your MCP Server using the group_id generated when you ingested the data.
uv run graphiti_mcp_server.py --group-id <group_id>
https://github.com/getzep/graphiti/tree/main/mcp_server#running-the-server
If you can't recall the group_id used, you can retrieve a list of group_ids in your database using the following cipher query:
MATCH (n:Episodic)-[e:MENTIONS]->(m:Entity)
RETURN DISTINCT e.group_id
ORDER BY e.group_id
LIMIT 100