meeting-memory-mcp
A local-first MCP server that stores meeting transcripts and maintains a searchable markdown wiki of decisions, commitments, and contradictions, enabling Claude to recall context across meetings.
README
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.
Tools
| Tool | Purpose |
|---|---|
add_meeting |
Store a new transcript |
search_meetings |
Full-text search across all past transcripts |
get_meeting |
Fetch a full transcript by id |
list_meetings |
List all stored meetings |
write_wiki_page |
Create/update a durable markdown memory page |
read_wiki_page |
Read a memory page |
list_wiki_pages |
List all memory pages |
Setup
Requires uv.
git clone <this repo>
cd meeting-memory-mcp
uv sync
Claude 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
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.