MCP Memory Server
Enables deployment as an npm package that can be installed and executed using npm commands
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@MCP Memory Serverstore that Alice is a software engineer at Acme Corp"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP Memory Server
A Model Context Protocol (MCP) server implementation that provides persistent memory capabilities for Large Language Models.
Overview
This repository contains a reference implementation of the Model Context Protocol Memory Server. The server implements a knowledge graph-based persistent memory system that enables LLMs to store, retrieve, and reason about information across conversations and sessions.
Related MCP server: Lspace MCP Server
Features
Knowledge Graph Storage: Persistent graph-based information storage
Entity Management: Create and manage entities and their relationships
Semantic Search: Find relevant information using semantic similarity
Cross-session Memory: Maintain context across different conversations
Memory Operations: Full CRUD operations for memory management
Installation
npm install
npm run buildUsage
# Run the memory server
npx mcp-server-memoryDevelopment
npm run watchThis will start the server in development mode with automatic rebuilding on file changes.
Running the Server
Direct Execution
For development and testing, you can run the server directly:
# Build first (if not already built)
npm run build
# Run the server
node dist/index.jsUsing npm binary
After building, you can use the npm binary name:
npx mcp-server-memoryBackground Process
The server runs continuously and communicates via stdio (standard input/output), which is the standard for MCP servers.
Testing with MCP Inspector
The MCP Inspector is an excellent tool for testing and debugging your memory server during development:
Start the Inspector
npx @modelcontextprotocol/inspector node dist/index.jsThis will:
Start a proxy server (typically on
127.0.0.1:6277)Launch the web-based inspector interface (typically at
http://127.0.0.1:6274)Provide a session token for authentication
Using the Inspector
The Inspector provides several tabs for testing your server:
Resources tab: View and test memory resources
Tools tab: Test memory management tools (create, update, delete entities)
Prompts tab: Test any prompt templates
Notifications pane: Monitor server logs and messages
Development Workflow
Make changes to
src/index.tsRun
npm run buildto rebuildStart the Inspector:
npx @modelcontextprotocol/inspector node dist/index.jsTest your changes in the web interface
Check the notifications pane for any errors
Integration with MCP Clients
To use this server with MCP clients (like Claude Desktop), add it to your client configuration:
{
"mcpServers": {
"memory": {
"command": "node",
"args": ["/path/to/your/mcp-memory-server/dist/index.js"]
}
}
}Or if published to npm:
{
"mcpServers": {
"memory": {
"command": "npx",
"args": ["@modelcontextprotocol/server-memory"]
}
}
}Model Context Protocol
The Model Context Protocol (MCP) is an open standard that enables seamless integration between AI applications and external data sources and tools. Learn more at modelcontextprotocol.io.
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceA Model Context Protocol server that provides AI agents with persistent memory capabilities through Mem0, allowing them to store, retrieve, and semantically search memories.Last updated679MIT

Lspace MCP Serverofficial
FlicenseAqualityFmaintenanceAn open-source server implementing the Model Context Protocol (MCP) that enables capturing insights from AI sessions and transforming them into persistent, searchable knowledge accessible across tools.Last updated78- FlicenseBqualityDmaintenanceA Model Context Protocol server that provides persistent memory capabilities for AI systems, enabling true continuity of consciousness across conversations through episodic, semantic, procedural, and strategic memory types.Last updated246
- Alicense-qualityDmaintenanceA Model Context Protocol server that provides AI assistants with persistent semantic memory and knowledge graph capabilities using PostgreSQL and vector embeddings. It enables cross-session storage, hybrid search, and complex relationship tracking for enhanced contextual awareness.Last updated271MIT
Related MCP Connectors
User-owned memory for AI agents, Copilot, Claude, IDEs, CLIs, and chat apps over remote MCP.
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
Persistent memory and knowledge graphs for AI agents. Hybrid search, context checkpoints, and more.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/StevenWangler/mcp-memory-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server