Media

Plaud MCP Server

Connect your account, then chat with AI to run tools.

Plaud is a hardware-and-AI voice recording platform (Plaud Note, Plaud NotePin). This MCP reads your Plaud account's recordings, the AI-generated transcripts and summaries, your user notes, and the connected Plaud devices — read-only, no audio is uploaded or modified.

Managed
8 tools
Agent guide included

Opens MCPBundles Studio with this server selected. After sign-in, chat and run tools from the same thread.

Browse all tools

AI Skill
SKILL.md

Domain knowledge for Plaud — workflow patterns, data models, and gotchas for your AI agent.

Plaud

Plaud Note and Plaud NotePin are hardware AI voice recorders. Recordings sync from the device to the user's Plaud cloud account. The cloud runs the audio through speech-to-text, plus an LLM, to produce a transcript, an automatic summary, and a list of action items. The user can also write a free-form note alongside the AI summary.

This bundle is a read-only view of one Plaud account. It cannot upload, delete, transcribe, or modify recordings. It cannot create or edit notes, summaries, or device entries. The web app at web.plaud.ai and the iOS / Android Plaud apps remain the place to do all of that.

How a Plaud account is shaped

  • User — one account, identified by email. Has a region (the AWS region the account was created in), a membership tier (free / Pro / Unlimited), monthly transcription quota, and a Stripe subscription if paid.
  • Devices — Plaud Notes and NotePins paired to the account. Each carries a serial number, model, firmware version, and battery state.
  • Recordings (file) — every captured audio clip. Carries: filename, duration in seconds, capture date, file size, MD5, source device serial, "scene" tag (meeting / interview / lecture / …), and an in-row trans_result array of {start_ms, end_ms, content} segments produced by the on-device or cloud transcriber.
  • AI artifacts (per recording) — every AI-generated derivative of the audio is an artifact under that recording's detail response. The two confirmed artifact families are:
    • auto_sum_note — the auto-generated markdown summary. Inlined as text in pre_download_content_list[].data_content.
    • consumer_note — the user's hand-edited markdown note for that recording (free-form, optional). Inlined the same way.
    • source_transaction — a binary blob that backs the raw transcript pipeline. Useful as a pointer; the human-readable transcript is the inline trans_result segments on the recording itself.

pre_download_content_list[] is the artifact list with content already in the response (data_content is the actual markdown). content_list[] is the parallel list with just metadata + a pre-signed S3 link (data_link — fetchable without an Authorization header). When a tool returns artifacts, prefer the pre_download_content_list content if it's there because it saves a second round-trip.

Each artifact id has the shape {type}:{short_hash}:{file_id} so an artifact's family can be read off the prefix without joining to anything.

Tools, in workflow order

  1. plaud_get_user_profile — confirm the connected account (email, plan, transcription quota, region). Run this first to confirm the token works.
  2. plaud_list_devices — see which Plaud Notes / NotePins are paired to this account.
  3. plaud_read_recordings — without file_id, list every recording on the account (each row includes the inline trans_result segments, so for many use-cases this single call is enough). With file_id, return that recording's full detail, including the AI artifact lists.
  4. plaud_get_transcript — the transcript view of one recording: every {start_ms, end_ms, content} segment from trans_result.
  5. plaud_get_summary — the auto-generated markdown summary for one recording (the auto_sum_note artifact).
  6. plaud_get_user_notes — the user's hand-edited markdown note for one recording (the consumer_note artifact). Empty when the user hasn't written one.
  7. plaud_get_audio_download_url — a downloadable URL to the original audio. Plaud requires the same Bearer token on the audio download URL, so the response includes the full URL plus the exact Authorization header to send.
  8. plaud_get_ai_task_status — poll the AI processing pipeline for a list of recording ids. Useful when a recording was just uploaded and the transcript / summary haven't appeared yet.

Region routing is automatic

Plaud runs separate regional API servers (api-euc1, api-use1, api-apse1, …) and the JWT carries which region the user belongs to. Tools always go to the correct regional host. There is nothing to configure.

What this bundle does not do

  • It does not upload audio. The hardware device + the official Plaud apps own that path.
  • It does not delete recordings. Use the Plaud app.
  • It does not regenerate summaries with a different prompt or template. Use the Plaud app.
  • It does not see other people's recordings. The bearer token is scoped to one Plaud account.

Tools in this Server (8)

Plaud Get Ai Task Status

Poll the Plaud AI pipeline status for a batch of recordings. Returns one status row per file_id reporting whether transcript / summary / other AI arti...

Plaud Get Audio Download Url

Build a downloadable URL for a recording's original audio (MP3 with proper ID3 tags). The URL is authenticated — the response includes the Authorizati...

Plaud Get Summary

Read the auto-generated AI summary for one recording — the auto_sum_note artifact. Plaud returns it as markdown. The body is sometimes inlined on /fil...

Plaud Get Transcript

Read the transcript for one recording: the array of {start_time, end_time, content, speaker} segments produced by Plaud's speech-to-text. The transcri...

Plaud Get User Notes

Read the user's hand-edited markdown note for one recording — the consumer_note artifact. The body is sometimes inlined on /file/detail and sometimes ...

Plaud Get User Profile

Read the profile of the connected Plaud account: id, email, country, region, membership tier (free / Pro / Unlimited), free-trial state, monthly trans...

Plaud List Devices

List the Plaud devices paired to this account. Each device row carries the serial number, model (Plaud Note vs Plaud NotePin), firmware version, last-...

Plaud Read Recordings

Read recordings from the Plaud account. Without file_id: list every recording — id, filename, duration_sec, capture date, file size, md5, scene tag (m...

Frequently Asked Questions

What is the Plaud MCP server?

Plaud is a hardware-and-AI voice recording platform (Plaud Note, Plaud NotePin). This MCP reads your Plaud account's recordings, the AI-generated transcripts and summaries, your user notes, and the connected Plaud devices — read-only, no audio is uploaded or modified. It provides 8 tools that AI agents can use through the Model Context Protocol (MCP).

How do I connect Plaud to my AI agent?

Add the MCPBundles server URL to your MCP client configuration (Claude Desktop, Cursor, VS Code, etc.). The URL format is: https://mcp.mcpbundles.com/bundle/plaud. Authentication is handled automatically.

How many tools does Plaud provide?

Plaud provides 8 tools that can be called by AI agents, along with a SKILL.md that gives your AI agent domain knowledge about when and how to use them.

What authentication does Plaud require?

Plaud uses API Key. Plaud requires credentials. Connect via MCPBundles and authentication is handled automatically.

Setup Instructions

Connect Plaud to any MCP client in minutes

https://mcp.mcpbundles.com/bundle/plaud

What is MCP?

Model Context Protocol lets AI tools call external capabilities securely through a single URL. This MCP server groups tools behind an endpoint that many clients can use.

Use this MCP server in 3 steps

  1. Copy the MCP URL above
  2. Open your AI tool and add a new MCP/connector
  3. Paste the URL and follow any auth prompts

Claude Desktop Users

Skip the manual setup! Use the .mcpb file format for one-click installation. Check the Claude Desktop tab for setup instructions.

Pick your tool tab for exact steps

Select ChatGPT, Cursor, Claude Code, or another tab for copy-paste config.

Ready to use Plaud?

Sign in to connect your credentials and start running tools from the chat.