MemoryPlugin MCP Server
OfficialClick 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., "@MemoryPlugin MCP ServerSearch my memories for anything about the Johnson project"
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.
MemoryPlugin MCP Server
An MCP (Model Context Protocol) server for MemoryPlugin, enabling AI assistants like Claude to store and retrieve your memories. This server provides a bridge between AI assistants and your MemoryPlugin account, allowing them to:
Store new memories and organize them into buckets
Search your memories with hybrid semantic + keyword search
Browse Smart Memory categories and their summaries
Edit memories or move them between buckets
Recall your imported chat history from ChatGPT, Claude, and other AI tools
Read or summarize a specific past conversation
Fetch the full transcript of a past conversation as structured JSON for deeper analysis
Search documents you uploaded to MemoryPlugin
Setup
Getting Your API Token
Find your API token in the dashboard
Copy the token for use in configuration
Claude Desktop Configuration
Configure the server in your Claude Desktop configuration file:
Option 1: Using npx (recommended, but currently experiencing issues)
{
"mcpServers": {
"memoryplugin": {
"command": "npx",
"args": ["-y", "@memoryplugin/mcp-server"],
"env": {
"MEMORY_PLUGIN_TOKEN": "your-token-here"
}
}
}
}Option 2: Using global installation (current workaround)
First, install the package globally:
npm install -g @memoryplugin/mcp-serverThen find your Node.js installation path:
which node
# Example output: /Users/username/.nvm/versions/node/v21.7.3/bin/nodeAnd find the installed package path:
npm root -g
# Look for something like: /Users/username/.nvm/versions/node/v22.14.0/lib/node_modulesAdd @memoryplugin/mcp-server/dist/index.js to the end of the path you received in the previous step.
So the final path should look like:
/Users/username/.nvm/versions/node/v22.14.0/lib/node_modules/@memoryplugin/mcp-server/dist/index.jsUse these paths in your configuration:
{
"mcpServers": {
"memoryplugin": {
"command": "/Users/username/.nvm/versions/node/v21.7.3/bin/node",
"args": [
"/Users/username/.nvm/versions/node/v21.7.3/lib/node_modules/@memoryplugin/mcp-server/dist/index.js"
],
"env": {
"MEMORY_PLUGIN_TOKEN": "your-token-here"
}
}
}
}If you experience any startup issues with Option 2, please use Option 1 with global installation instead.
Related MCP server: Simple Memory MCP
Available Tools
The MCP server exposes these tools to AI assistants:
Memories
store_memory— save a new memory, optionally into a specific bucketsearch_memories— hybrid semantic + keyword search over your saved memoriesget_memories_and_buckets— fetch recent or all memories (optionally by bucket) along with your bucket listlist_buckets— view all memory buckets with memory countscreate_bucket— create a new bucket to organize memories by topiclist_bucket_categories— list Smart Memory categories inside a bucket, each with a summarylist_category_memories— load the full memories of one Smart Memory categoryupdate_or_move_memories— edit a memory's text, or move one or many memories to another bucket
Chat history
recall_chat_history— search your imported past conversations across AI tools; supports parallel queries, token budgets, date bounds, and a quality modeget_conversation_summary— AI-generated summary of one past conversation (needs 5,000+ tokens; for shorter chats useget_full_conversation)get_full_conversation— the complete transcript of one past conversationexport_conversation— a temporary download URL (expires in 15 minutes, no auth needed) the assistant fetches to get one past conversation as a structured JSON file, for transcripts too long to read inline or destined for file-based processing
Files
search_uploaded_files— search documents you uploaded to your MemoryPlugin file buckets
Example Usage
Here are some example prompts you can use with Claude once the server is configured:
Could you store this as a memory: "Had coffee with Sarah at Blue Bottle, discussed upcoming project deadlines"
Can you show me my latest 5 memories?
Could you create a new bucket called "Work Meetings"?
Search my memories for anything related to "coffee meetings"
Show me the categories in my main bucket
What did we decide about the pricing page? Check my past conversations.
Go through my whole conversation about the pricing redesign and pull out every action itemSupport
For any issues or questions, please contact support@memoryplugin.com
License
MIT. See LICENSE.
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
- AlicenseAquality-maintenanceEnables AI applications to add, search, update, and delete long-term memories using the Mem0 Memory API, allowing agents to persistently remember user preferences, conversation history, and contextual information across sessions.Last updated9
- Alicense-qualityDmaintenanceEnables AI assistants to store and retrieve persistent memories with a web management interface. Supports creating, searching, and managing memories through natural language commands or a visual web dashboard.Last updated121MIT
- AlicenseAqualityDmaintenanceAdds persistent memory to AI assistants by connecting to the Memphora cloud platform, allowing them to store and recall facts across conversations. It enables tools for searching memories, extracting insights, and maintaining long-term user context and preferences.Last updated53MIT

JauMemory MCP Serverofficial
AlicenseAqualityDmaintenanceProvides persistent memory capabilities for AI assistants, enabling storage, recall, and analysis of information across conversations with intelligent memory management.Last updated2527MIT
Related MCP Connectors
Persistent memory for AI agents. Search, store, and recall across sessions.
Persistent memory and knowledge management for AI agents with semantic search and 50+ tools.
Persistent memory for AI agents — verbatim conversations, searchable by meaning.
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/memoryplugin/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server