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., "@Plaud MCP Serversummarize my most recent meeting transcript"
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.
Plaud MCP Server
Connect your Plaud Note recordings directly to Claude, Cursor, or any MCP-compatible AI client. Search, retrieve, and work with your meeting transcripts and AI summaries hands-free.
What It Does
This MCP server gives your AI assistant direct access to your Plaud recordings:
List recordings — See all your recordings with dates, durations, and transcript status
Get transcripts — Pull full speaker-diarized transcripts for any recording
Get AI summaries — Retrieve Plaud's AI-generated meeting summaries
Search — Find recordings by title/keyword
Get recent — Quickly pull your most recent recordings with full transcripts
Setup (5 minutes)
1. Install dependencies
git clone https://github.com/YOUR_USERNAME/plaud-mcp.git
cd plaud-mcp
pip install -r requirements.txt2. Get your Plaud auth token
Plaud doesn't offer public API keys, so you'll grab your session token from the web app:
Open web.plaud.ai in Chrome
Sign in to your account
Open DevTools:
Cmd+Option+J(Mac) orCtrl+Shift+J(Windows)Click the Network tab
Refresh the page
Click any request to
api.plaud.aiIn the request headers, find
Authorization: Bearer eyJ...Copy everything after
Bearer— that's your token
3. Configure your token
cp .env.example .envOpen .env and paste your token:
PLAUD_TOKEN=eyJhbGciOiJSUzI1NiIs...your_full_token_here4. Connect to your AI client
Claude Code
claude mcp add plaud -- python /path/to/plaud-mcp/server.pyClaude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"plaud": {
"command": "python",
"args": ["/path/to/plaud-mcp/server.py"],
"env": {
"PLAUD_TOKEN": "your_token_here"
}
}
}
}Cursor / Windsurf / Other MCP Clients
Follow the same pattern — point to server.py as the command with your token as an env var.
5. Test it
Ask your AI: "List my recent Plaud recordings" or "What did I discuss in my last meeting?"
Token Refresh
Plaud tokens expire periodically. When you get auth errors, just repeat step 2 to grab a fresh token and update your .env file.
Available Tools
Tool | Description |
| Check if your auth token is valid |
| List recordings with pagination |
| Get full transcript + AI summary for a recording |
| Search recordings by title keyword |
| Get recent recordings with full transcripts |
Privacy
This runs 100% locally on your machine
Your Plaud token never leaves your computer
No data is sent to any third party
Only you can access your recordings through this server
License
MIT — use it however you want.
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.