Personal Context Manager
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., "@Personal Context Managerremember that I prefer dark mode in all my code editors"
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.
Personal Context Manager
An MCP (Model Context Protocol) server that provides persistent personal context storage across AI conversations. It allows AI assistants to remember user preferences, project conventions, and other personal information between sessions.
Features
Persistent Storage — Context entries are saved to a local JSON file and survive across conversations
Upsert by Key — Automatically creates or updates entries based on key, avoiding duplicates
Keyword Search — Search across keys, values, and tags to find relevant context
Tagging — Organize entries with optional tags for easier retrieval
Atomic Writes — Uses tmp-file + rename to prevent data corruption
Related MCP server: agent-mem0
Tools
Tool | Description |
| Add or update a context entry by key |
| Search entries by keyword |
| List all stored entries |
| Delete an entry by ID |
Setup
Install
npm install
npm run buildConfigure in Claude Code
Add to your MCP settings (~/.claude/settings.json):
{
"mcpServers": {
"personal-context-manager": {
"command": "node",
"args": ["/path/to/personal-context-manager/dist/index.js"]
}
}
}Data Location
Context data is stored at ~/.personal-context-manager/contexts.json by default.
Override with the CONTEXT_MANAGER_DATA_DIR environment variable:
{
"mcpServers": {
"personal-context-manager": {
"command": "node",
"args": ["/path/to/personal-context-manager/dist/index.js"],
"env": {
"CONTEXT_MANAGER_DATA_DIR": "/custom/path"
}
}
}
}License
MIT
This server cannot be installed
Maintenance
Latest Blog Posts
- 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/nullptr-z/Personal-context-manager'
If you have feedback or need assistance with the MCP directory API, please join our Discord server