Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

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.md

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

  1. You paste a transcript into Claude and say "log this meeting."
  2. Claude calls add_meeting to store it, then search_meetings to pull up anything

related from past meetings.

  1. Claude reasons over both (in its own context — this server does no LLM calls itself)

and calls write_wiki_page to update a markdown page for that topic/client/project with the latest decisions, status, and any contradictions it noticed.

  1. Next time, Claude calls read_wiki_page first 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

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Vector & Memory servers.