Mcp Memory Server — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Mcp Memory Server (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 simple memory storage server for Claude using the Model Context Protocol (MCP). Perfect for hobby projects or learning how to build your first MCP server!
This server lets Claude remember things across conversations by storing and retrieving memories with optional tags.
Store text memories that Claude can search and retrieve later. Great for:
store_memory: Store a memory with optional tagsretrieve_memories: Search memories by contentlist_memories: Show all stored memoriesdelete_memory: Delete a specific memoryclear_memories: Delete all memories# Clone and setup
git clone https://github.com/imyashkale/mcp-memory-server.git
cd mcp-memory-server
npm install
npm startServer runs on http://localhost:3000
claude mcp add memory http://localhost:3000/message --transport httpThat's it! Claude can now use the memory tools.
Once connected to Claude, you can:
# Store memories
"Remember that I like both dogs and cats"
# Retrieve memories
"What do you remember about my pet preferences?"
# List all memories
"Show me all my stored memories"npm run devindex.js - Main server file with MCP toolspackage.json - Dependencies and scriptsPORT - Server port (default: 3000)LOG_LEVEL - Logging: error, warn, info, debug (default: info)Each memory contains:
id - Unique numbercontent - The memory texttags - Optional categorization tagstimestamp - When it was created# Build and run
docker build -t mcp-memory-server .
docker run -d -p 3000:3000 mcp-memory-server
# Add to Claude with Docker
claude mcp add memory --transport http -- http://localhost:3000/messageThis is a basic MCP server to get you started. You can extend it by:
Port in use? Change the port:
PORT=3001 npm start
claude mcp add memory http://localhost:3001/message --transport httpConnection issues? Check the server is running:
curl -X POST http://localhost:3000/message -H "Content-Type: application/json" -d '{"jsonrpc": "2.0", "id": 1, "method": "tools/list"}'This is a hobby project, but contributions are welcome! Feel free to:
MIT License - feel free to use this project for learning, hobby projects, or commercial use.
Built with Node.js and the official MCP SDK. Perfect for learning MCP development!
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.