meeting-memory-mcp
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., "@meeting-memory-mcpLog today's standup and check for any contradictions"
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.
meeting-memory-mcp
A local-first MCP server that gives Claude memory across your meeting transcripts.
Most "AI meeting notes" tools summarize one meeting at a time and forget everything once the chat window closes. This server stores transcripts locally (SQLite, full-text search) and lets Claude maintain a living, human-readable markdown wiki of decisions, open commitments, and contradictions across meetings — so the next time you talk to Claude about a project or a client, it already remembers what happened last time.
Everything stays on your machine. No transcript or summary is ever sent anywhere except to the LLM you're already chatting with (Claude).
How it works
You paste a transcript into Claude and say "log this meeting."
Claude calls
add_meetingto store it, thensearch_meetingsto pull up anything related from past meetings.Claude reasons over both (in its own context — this server does no LLM calls itself) and calls
write_wiki_pageto update a markdown page for that topic/client/project with the latest decisions, status, and any contradictions it noticed.Next time, Claude calls
read_wiki_pagefirst to recall context before you even mention details.
The wiki pages are plain markdown files on disk (~/.meeting-memory-mcp/wiki/ by
default) — you can open, edit, or read them yourself anytime, no app required.
Related MCP server: kb
Tools
Tool | Purpose |
| Store a new transcript |
| Full-text search across all past transcripts |
| Fetch a full transcript by id |
| List all stored meetings |
| Create/update a durable markdown memory page |
| Read a memory page |
| List all memory pages |
Setup
Requires uv.
git clone <this repo>
cd meeting-memory-mcp
uv syncClaude Desktop / Claude Code
Add to your MCP config (claude_desktop_config.json or .mcp.json):
{
"mcpServers": {
"meeting-memory": {
"command": "uv",
"args": ["--directory", "/absolute/path/to/meeting-memory-mcp", "run", "meeting-memory-mcp"]
}
}
}Restart Claude. Then just say: "Here's a transcript from today's call, log it and let me know if it conflicts with anything we discussed before."
Where data is stored
Defaults to ~/.meeting-memory-mcp/. Override with the MEETING_MEMORY_DIR environment
variable (e.g. to keep separate memory per client or sync the folder via your own
backup tool).
Why this exists
Every meeting-notes tool on the market summarizes a single meeting well. None of them help a non-technical user notice "you committed to this three meetings ago and it never came up again," because that requires reasoning across history, not just one transcript. This server doesn't do that reasoning itself — it gives Claude the storage and retrieval it needs to do it, and a human-readable place to keep what it learns.
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-qualityBmaintenanceAn MCP server that provides searchable local storage for Claude conversation history, featuring automatic topic extraction and weekly insight summaries. It enables Claude to retrieve context from past sessions through full-text search and organized file storage.Last updated2MIT
- Alicense-qualityCmaintenanceA local MCP server that provides a shared context and learning foundation across multiple AI tools (Claude, Copilot, Codex) for multiple projects, enabling persistent knowledge, decisions, and gap reflection through note storage.Last updatedMIT
- Alicense-qualityDmaintenancePersistent memory MCP server for Claude Code that captures and recalls project context across sessions, eliminating the need to re-explain architecture and decisions daily.Last updated381MIT
- Alicense-qualityDmaintenanceMCP server providing Claude with persistent, local memory for tracking architectural decisions, dead ends, and project context across conversations.Last updatedMIT
Related MCP Connectors
User-owned memory for AI agents, Copilot, Claude, IDEs, CLIs, and chat apps over remote MCP.
Cloud-hosted MCP server for durable AI memory
Private-by-default, local-first memory/context/task orchestrator for MCP apps and agents.
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/coolsheng/meeting-memory-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server