Skip to main content

plaud-tools

Talk to your Plaud recordings. Connect your Plaud account to Claude (or another AI assistant) so you can ask questions about your meetings, generate summaries, and search across every recording — in plain English.

What you can do:

  • Ask things like "Summarize my client call from Tuesday afternoon."
  • Ask things like "What did we decide about the Henderson account in last week's meeting?"
  • Drop an audio file into the chat and say "Upload and transcribe this."

Windows users get a one-click installer with auto-updates. macOS and Linux users can install via pip — see docs/INSTALL-METHODS.md.

Quickstart

1. Open PowerShell. Press the Windows key, type PowerShell, and press Enter. A blue window opens.

2. Paste this command and press Enter:

irm https://raw.githubusercontent.com/massive-value/plaud-tools/main/scripts/install.ps1 | iex

This downloads PlaudTools from GitHub to your user folder. No admin rights are needed and nothing is installed system-wide.

3. Sign in. When the install finishes, a Windows notification appears saying "PlaudTools is now running in your system tray — click the icon to sign in." Click the PlaudTools icon in your taskbar (bottom-right, next to the clock — you may need to click the up-arrow ^ to find it). A sign-in window opens. Enter your Plaud email and password.

Signed up for Plaud with Google? You don't have a Plaud password yet. Visit web.plaud.ai, click "Forgot password," and Plaud will email you a reset link — even though you've never set a password before. Use that new password here.

4. Connect the apps you use. After sign-in, the PlaudTools window opens. Click Configure AI Agents…, then click Connect next to each AI app you have installed (Claude Desktop, Claude Code, or Codex). Apps you don't have installed are shown as Not installed and can't be connected.

5. Restart the apps you connected. New connections only load on a fresh start.

  • Claude Desktop — go to File → Exit (closing the window keeps it running in the tray), then reopen it from the Start menu.
  • Claude Code — in your existing session, type /exit, then run claude again in a new terminal.
  • Codex — press Ctrl+C to end the session, then run codex again in a new terminal.

6. Try it. In your AI assistant, paste this prompt:

I just installed an MCP for Plaud. Can you take a look and make sure
everything is wired up. As an example, can you tell me about my most
recent meeting that has a summary. After that, tell me about what sort
of things you can do with the plaud tools and some potential ways that
it can apply to my workflows.

The assistant will confirm the tools are wired up, walk through one of your recent recordings, and explain what else it can do for you.

Keeping PlaudTools up to date

PlaudTools checks GitHub for new releases once a day and notifies you when one is available.

Installing an update

When an update is ready, you'll see an Update available: vX.X.X item at the top of the tray menu. Click it, then click Install update and restart. PlaudTools downloads the new version, swaps it in, and relaunches — usually under 30 seconds. Your sign-in and connected apps carry over.

Checking your version

Click the PlaudTools icon in your taskbar to open the home window. Your current version is shown in the footer.

If something goes wrong

Re-run the install command in PowerShell with -Repair:

& ([scriptblock]::Create((irm https://raw.githubusercontent.com/massive-value/plaud-tools/main/scripts/install.ps1))) -Repair

This shuts down PlaudTools, wipes the install folder, and reinstalls the latest release. Your sign-in is preserved.

Uninstalling

Open the tray menu, click Uninstall…, review the checklist, and click Uninstall. Your saved sign-in and log files are kept by default, so a future reinstall picks up where you left off.

What PlaudTools can do

PlaudTools gives your AI assistant a set of tools for working with your Plaud account. You don't call these directly — you ask in plain English, and the assistant picks the right one.

What it does What you'd ask
Find recordings "Show me my recordings from last week."
Read a recording "What did I say in the Henderson meeting?"
Rename, move, or trash "Rename yesterday's 9am recording to 'Tax planning call'."
Fix a transcript or summary "Fix the spelling of the client's name in yesterday's summary."
Upload audio "Upload this audio file and transcribe it." (with attachment)
Transcribe and summarize "Transcribe and summarize yesterday's recording."
List and manage folders "Create a 'Client Calls' folder" / "What folders do I have in Plaud?"
Merge recordings "Merge these three call segments into one recording."
Download the audio "Save the audio from yesterday's client call."

How this compares to Plaud's official MCP & CLI

Plaud now ships its own MCP server and CLI (@plaud-ai/mcp, @plaud-ai/cli). They're solid, and if all you need is to read your recordings, they're the safer choice — official, supported, and OAuth-based. Install them with npx -y @plaud-ai/mcp@latest install.

They are read-only. The official developer API behind them exposes three endpoints — list recordings, get one recording, get the current user. There are no write endpoints, so the official tools cannot change anything in your Plaud account. That's the difference between the two projects, and it isn't a gap that closes with their next release.

PlaudTools drives Plaud's web API instead, which is how it can write. 7 of our 11 tools have no official equivalent:

PlaudTools Official
Browse, read transcripts, read summaries ✅ ✅
Rename recordings ✅ ❌
Trash / restore / permanently delete ✅ ❌
Folders — list, create, edit, delete, move into ✅ ❌
Name speakers in a transcript ✅ ❌
Fix transcript text (find-and-replace) ✅ ❌
Edit AI summaries ✅ ❌
Upload local audio (auto-transcoded) ✅ ❌
Download original audio ✅ ✅
Trigger transcription / summarization ✅ ❌
Merge recordings ✅ ❌
Browse trash ✅ ❌
Batch operations ✅ ❌
Search your whole library ✅ ⚠️ newest 500 recordings only
Runs entirely on your machine ✅ ⚠️ HTTP mode routes recordings through Plaud's US server
Usage telemetry none sent on every tool call
Windows tray app, one-click install, auto-update ✅ ❌ npm only

The two can coexist — nothing stops you connecting both and letting your assistant use whichever fits the request.

The tradeoff: because PlaudTools uses the private web API rather than the official one, it can break when Plaud changes that API, and it sits in a grey area of their Terms of Service (see the note at the bottom). The official tools don't have either problem. Pick accordingly.

A detailed feature-by-feature audit lives in docs/plans/2026-07-31-official-plaud-mcp-cli-competitive-audit.md.

Other ways to install

The Windows tray bundle above is the recommended path for most users. Two other install methods exist:

  • PyPI — if you have Python 3.11+, run pip install plaud-tools. You'll get the plaud-tools CLI and plaud-mcp server but no tray app or auto-updates.
  • Manual zip — download PlaudTools.zip from the latest GitHub release and unzip anywhere. Useful for air-gapped machines or restrictive IT environments.

Full instructions for both: docs/INSTALL-METHODS.md.

Signing in again later

Your Plaud sign-in is good for about 30 days. Starting 5 days before it expires, the tray menu shows Session expires in N days — sign in again — click it and re-enter your password. If you wait until it fully expires, your AI assistant will tell you it can't reach Plaud; open the tray menu, click Sign in…, and you're back.

Troubleshooting

Claude (or your AI assistant) says it can't see Plaud after you wired it up. The connection only loads on a fresh start. Fully quit the app first — see step 5 of the Quickstart for the right way to do it on each platform — then reopen and try again.

The PlaudTools icon isn't in your taskbar. Click the small up-arrow (^) next to the clock in the bottom-right of your taskbar — Windows hides newly-installed tray icons there by default. If you still don't see it, re-run the install command in PowerShell with -Repair (see "If something goes wrong" above).

Everything else — ffmpeg setup, region mismatches, manual config-file editing, antivirus quarantine, multi-account workflows — is in docs/TROUBLESHOOTING.md.

For developers

Source, dev environment setup, contributor workflow: CONTRIBUTING.md.

More documentation

Important

Alpha — APIs and flags may change between minor versions. Pin versions in production wiring and check the CHANGELOG before upgrading.

Unofficial — not affiliated with, endorsed by, or sponsored by Plaud Inc. PlaudTools uses Plaud's web API directly, which their Terms of Service may restrict; your account could be rate-limited or suspended. Use at your own risk. You still need a real Plaud account; PlaudTools does not replace the Plaud mobile or web apps.


CI Bundle smoke PyPI status: alpha Python License: LGPL-3.0-or-later

Release files for plaud-tools 0.10.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for plaud-tools 0.10.1
File Size Uploaded
plaud_tools-0.10.1.tar.gz 308.2 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for plaud-tools 0.10.1
File Interpreter ABI Platform
plaud_tools-0.10.1-py3-none-any.whl Python 3 none any Details

Total release size: 468.7 kB

Release files / plaud_tools-0.10.1.tar.gz

Download URL plaud_tools-0.10.1.tar.gz
Size 308.2 kB
Tags Source
SHA-256 checksum
How to use checksums
46d9ee3fc092dd98e50a7248a86851995595706589e6f60d58c6c16de6b0d888
BLAKE2b-256 checksum
How to use checksums
c9a4b89a2f34cb25276444065b0f33e3fa47a14167f8ef23d7f253ab2ac27a03
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.

Transparency log

Release files / plaud_tools-0.10.1-py3-none-any.whl

Download URL plaud_tools-0.10.1-py3-none-any.whl
Size 160.5 kB
Tags Python 3
SHA-256 checksum
How to use checksums
f3a55ca1eee89759d4c87a51ab5a4a598e0e79d075db0a6e77ee844823d65f7e
BLAKE2b-256 checksum
How to use checksums
6b70df2825527a34aa7a7fc461779a64ca3230a139640cbf6ff746e04982f6a0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.

Transparency log

Release history Release notifications | RSS feed

0.11.0

2 release files

This release

0.10.1 This release

2 release files

0.10.0

2 release files

0.9.0

2 release files

0.8.2

2 release files

0.8.1

2 release files

0.8.0

2 release files

0.7.1

2 release files

0.7.0

2 release files

0.6.0

2 release files

0.5.0

2 release files

0.4.1

2 release files

0.4.0

2 release files

0.3.4

2 release files

0.3.3

2 release files

0.3.2

2 release files

0.3.1

2 release files

0.3.0

2 release files

0.2.11

2 release files

0.2.10

2 release files

0.2.9

2 release files

0.2.8

2 release files

0.2.7

2 release files

0.2.6

2 release files

0.2.5

2 release files

0.2.4

2 release files

0.2.3

2 release files

0.2.2

2 release files

0.2.1

2 release files

0.2.0

2 release files

0.1.22

2 release files

0.1.21

2 release files

0.1.20

2 release files

0.1.19

2 release files

0.1.18

2 release files

0.1.17

2 release files

0.1.16

2 release files

0.1.15

2 release files

0.1.14

2 release files

0.1.13

2 release files

0.1.12

2 release files

0.1.11

2 release files

0.1.10

2 release files

0.1.8

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page