Mcp Server Memory — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Mcp Server Memory (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A Python implementation of an MCP server that processes and saves memory in the form of a knowledge graph.
MCP Server Memory provides functionality for maintaining a persistent knowledge graph for AI memory. It allows storing, retrieving, and querying structured data in the form of entities, relations, and observations. This enables AI systems to store and recall information across sessions.
The server implements the MCP (Model Control Protocol) interface, exposing the following tools:
create_entities: Create multiple new entities in the knowledge graphcreate_relations: Create multiple new relations between entitiesadd_observations: Add new observations to existing entitiesdelete_entities: Delete entities and their associated relationsdelete_observations: Delete specific observations from entitiesdelete_relations: Delete specific relations from the graphread_graph: Read the entire knowledge graphsearch_nodes: Search for nodes matching a queryopen_nodes: Retrieve specific nodes by nameuv add mcp-server-memorypip install mcp-server-memory# Run the server directly
mcp-server-memory
# Set custom memory file path
MEMORY_FILE_PATH=/path/to/memory.json mcp-server-memoryAdd to your Claude(claude_desktop_config.json) or Cursor(mcp.json) settings file:
<details> <summary>Using uv</summary>
"mcpServers": {
"memory": {
"command": "/path/to/uv",
"args": [
"--directory",
"/path/to/mcp_server_memory/src",
"run",
"python",
"-m",
"mcp_server_memory"
],
"env": {
"MEMORY_FILE_PATH": "/path/to/memory.json"
}
}
}</details>
<details> <summary>Using pip installation</summary>
"mcpServers": {
"memory": {
"command": "python",
"args": ["-m", "mcp_server_memory"]
}
}</details>
By default, the knowledge graph data is stored in a memory.json file in the package directory. You can customize the location using the MEMORY_FILE_PATH environment variable.
Clone the repository and install development dependencies:
git clone https://github.com/jcdiv47/mcp-server-memory.git
cd mcp-server-memory
uv venv
source .venv/bin/activate
uv install -e ".[dev]"mcp-server-memory is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.