←back to thread

109 points roseway4 | 2 comments | | HN request time: 0.437s | source

Hi, I'm Daniel from Zep. I've integrated the Cursor IDE with Graphiti, our open-source temporal knowledge graph framework, to provide Cursor with persistent memory across sessions. The goal was simple: help Cursor remember your coding preferences, standards, and project specs, so you don't have to constantly remind it.

Before this integration, Cursor (an AI-assisted IDE many of us already use daily) lacked a robust way to persist user context. To solve this, I used Graphiti’s Model Context Protocol (MCP) server, which allows structured data exchange between the IDE and Graphiti's temporal knowledge graph.

Key points of how this works:

- Custom entities like 'Requirement', 'Preference', and 'Procedure' precisely capture coding standards and project specs.

- Real-time updates let Cursor adapt instantly—if you change frameworks or update standards, the memory updates immediately.

- Persistent retrieval ensures Cursor always recalls your latest preferences and project decisions, across new agent sessions, projects, and even after restarting the IDE.

I’d love your feedback—particularly on the approach and how it fits your workflow.

Here's a detailed write-up: https://www.getzep.com/blog/cursor-adding-memory-with-graphi...

GitHub Repo: https://github.com/getzep/graphiti

-Daniel

Show context
jasonjmcghee ◴[] No.43506892[source]
What's the advantage over the built-in solution? (and before it, .cursorrules)

https://docs.cursor.com/context/rules-for-ai

replies(1): >>43507353 #
striking ◴[] No.43507353[source]
You add some additional instructions to the Cursor rules here: https://github.com/getzep/graphiti/tree/main/mcp_server#inte...

I think the difference is that Cursor doesn't update its rules automatically as you work, while this might?

replies(3): >>43507514 #>>43509936 #>>43509947 #
roseway4 ◴[] No.43507514[source]
Correct. The Graphiti MCP server, with the help of the agent, stores and retrieves preferences and requirements automatically without requiring rule changes.
replies(1): >>43509377 #
1. randall ◴[] No.43509377[source]
is this cursor specific or can i integrate with other things if im insane?
replies(1): >>43510303 #
2. roseway4 ◴[] No.43510303[source]
Totally not Cursor-specific. Any MCP Client can be used. You may want to use different entity types that make more sense for your use case: https://github.com/getzep/graphiti/blob/dbe21a1975b0747cd450...