Attempt to replicate ChatGPT like memory (text file) for Claude (and other MCP clients)
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"mcp-server-memory-file": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
This is an MCP server to interact with a memory text file to help Claude with inter-chat context.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml
Dynamic problem-solving through sequential thought chains
Persistent memory using a knowledge graph
Just a Better Chatbot. Powered by Agent & MCP & Workflows.
Workspace template + MCP server for Claude Code, Codex CLI, Cursor & Windsurf. Multi-agent knowledge engine (ag-refresh / ag-ask) that turns any codebase into a queryable AI assistant.
MCP Security Weekly
Get CVE alerts and security updates for Mcp Server Memory File and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
This is an MCP server to interact with a memory text file to help Claude with inter-chat context.
Each line is a memory.
These tools allow Claude (and other MCP clients) to manage memories mid-chat:
memory_add(memory: string) - append the memorymemory_search(query: string) - return matching memories (substring exact match) - later, might allow globs/regexmemory_delete(query: string) - delete matching memories (substring exact match)memory_list() - return all memoriesmemory_update == memory_delete + memory_addFor example,
run_command)... say there is a failure on a first attempt to use the tool (i.e. the python command isn't present) and then a subsequent tool use succeeds (i.e. using python3 instead of python) => Claude can record "use python3, python is not present"...Then, when a new chat begins, Claude will automatically get recent memories (a subset or all) OR can ask for memories (some/more/all). And then can use those to influence responses/tools/etc.
A simple memory text file, why:
mcp-server-commands worked great (when Claude had them).Cueing mechanism:
I have no idea if these are worth the time, just listing ideas here for the future. Perhaps in part to stop myself from working on them :)