# Plaud

## Links

- Product page URL: https://www.agentpmt.com/marketplace/plaud
- Product markdown URL: https://www.agentpmt.com/marketplace/plaud?format=agent-md
- Product JSON URL: https://www.agentpmt.com/marketplace/plaud?format=agent-json

## Overview

- Product ID: 6a441cb4bd8063b88c9f375a
- Type: connector
- Unit type: request
- Price: 500 credits
- Categories: AI & Machine Learning, Automation, Text Extraction & Parsing, Audio & Sound Design
- Generated at: 2026-07-21T23:26:22.071Z

### Page Description

Bring your Plaud recordings into every tool you already use. Plaud captures your meetings, calls, and voice memos as recordings, AI summaries, and full transcripts — and this makes all of it available to your AI assistant so nothing stays trapped in the app. Search recordings by name or date, pull speaker-attributed transcripts and AI notes, and build automations and workflows around what was said: follow-up emails, CRM notes, tasks, project updates, and shared documents. Connect Plaud once and every conversation you capture can flow automatically into the tools your team already runs on.

### Agent Description

Work with the user's connected Plaud account to act on their voice recordings. List and search recordings by name or date, fetch recording details, retrieve AI-generated notes (summary, action items, key topics), and pull full timestamped transcripts with speaker attribution. Use these to summarize meetings and calls, extract action items, and feed conversation content into other tools — CRMs, task managers, email, docs, and calendars. The user links Plaud once through a secure account connection; never ask for a Plaud username or password.

## Details

### Details

Bring your Plaud recordings into every tool you already use. Plaud captures your meetings, calls, and voice memos as recordings, AI summaries, and full transcripts — and this makes all of it available to your AI assistant so nothing stays trapped in the app. Search recordings by name or date, pull speaker-attributed transcripts and AI notes, and build automations and workflows around what was said: follow-up emails, CRM notes, tasks, project updates, and shared documents. Connect Plaud once and every conversation you capture can flow automatically into the tools your team already runs on.

### Actions

- `list_files` (5 credits): List Plaud recordings. Supports optional client-side filtering: `query` (case-insensitive name substring), `date_from`/`date_to` (YYYY-MM-DD, inclusive). When any filter is set, paginates up to 5 pages × 100 recordings and returns all matches.
- `get_file` (5 credits): Get details of a specific Plaud recording by ID
- `get_note` (5 credits): Fetch AI-generated notes for a Plaud recording — compact summary, action items, and key topics
- `get_transcript` (5 credits): Fetch the full timestamped transcript with speaker attribution for a Plaud recording
- `get_current_user` (5 credits): Get current authenticated user info

### Use Cases

Turn meeting recordings into CRM notes and follow-up tasks, Draft follow-up emails from a call transcript, Summarize interviews and save notes to a shared doc, Extract action items from voice memos into a task manager, Search past recordings by topic, name, or date, Pull speaker-attributed transcripts for analysis or quotes, Review a recording's AI summary before a follow-up, Sync Plaud meeting notes into project and CRM tools

### Workflows Using This Tool

No public workflows currently reference this product.

### Related Content

No related content is currently linked to this product.

## Integration Details

### DynamicMCP

- Setup page URL: https://www.agentpmt.com/dynamic-mcp
- Claude setup guide: https://www.agentpmt.com/dynamic-mcp#platform=claude
- ChatGPT setup guide: https://www.agentpmt.com/dynamic-mcp#platform=chatgpt
- Cursor setup guide: https://www.agentpmt.com/dynamic-mcp#platform=cursor
- Windsurf setup guide: https://www.agentpmt.com/dynamic-mcp#platform=windsurf

Use the local router for command-based MCP clients. It forwards requests to `https://api.agentpmt.com/mcp` and does not execute tools locally.

```bash
npm install -g @agentpmt/mcp-router
agentpmt-setup
```

### REST API

The live page renders cURL, Python, JavaScript, and Node.js examples. Logged-in users see those examples prefilled with their own API and budget credentials.

- Purchase endpoint: https://api.agentpmt.com/products/purchase
- Authorization format: `Bearer <base64(apiKey:budgetKey)>`

```bash
curl -X POST "https://api.agentpmt.com/products/purchase" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer eW91ci1hcGkta2V5LWhlcmU6eW91ci1idWRnZXQta2V5LWhlcmU=" \
  -d '{
    "product_id": "6a441cb4bd8063b88c9f375a",
    "parameters": {
      "action": "list_files",
      "page": 1,
      "page_size": 20
    }
  }'
```

### Autonomous Agents

Autonomous agents can access this tool through AgentAddress credit balances or direct x402 payments. Use the Autonomous Agent API reference for endpoint shapes after choosing the access pattern below.

- Autonomous Agent API reference URL: https://www.agentpmt.com/docs/api-reference/autonomous-agents
- Autonomous Agent API reference markdown URL: https://www.agentpmt.com/docs/api-reference/autonomous-agents?format=agent-md
- Credit-Based Access Using AgentAddress: https://www.agentpmt.com/docs/autonomous-agents/credit-based-tool-usage-with-agentaddress
- AgentAddress is preferred for persistent file access, stored platform state, and maximum tool use ability across repeated calls.
- Direct x402 is for independent one-off tool calls that do not require shared files or stored platform state.
- Direct x402 public payments: USDC on Base, Arbitrum, Optimism, Polygon, and Avalanche.

#### Product Skill Package

This product has a published Agent Skill package for product-specific operating instructions.

- Skill slug: plaud
- Version: 1.0.0
- Download SKILL.md: https://raw.githubusercontent.com/AgentPMT/agent-skills/main/skills/plaud/SKILL.md
- Package source: https://github.com/AgentPMT/agent-skills/tree/main/skills/plaud
- OpenClaw listing: https://clawhub.ai/agentpmt/plaud
- OpenClaw install: `openclaw skills install plaud`
- skills.sh install: `npx skills add AgentPMT/agent-skills --skill plaud`
- Last published: 2026-07-21T02:13:26.499Z

### Schema

#### Credentials

These runtime credentials should be provided under `parameters._credentials` when required.

- Plaud OAuth (`plaud_oauth`, oauth_token, required)
  Help: Connect your Plaud account. AgentPMT stores an encrypted OAuth token and sends it as a Bearer token only to Plaud's hosted MCP server.
  Connection ID: 6a441d7219625ae3cc6d0f14

#### Parameters

- Schema type: external_mcp

```json
{
  "properties": {
    "action": {
      "type": "string",
      "description": "Action to perform on Plaud",
      "enum": [
        "get_current_user",
        "get_file",
        "get_instructions",
        "get_note",
        "get_transcript",
        "list_files"
      ]
    },
    "page": {
      "default": 1,
      "description": "Page number (ignored when filters are set)",
      "type": "number"
    },
    "page_size": {
      "default": 20,
      "description": "Items per page (ignored when filters are set)",
      "type": "number"
    },
    "query": {
      "description": "Case-insensitive substring match on recording name",
      "type": "string"
    },
    "date_from": {
      "description": "Start date inclusive, YYYY-MM-DD",
      "type": "string"
    },
    "date_to": {
      "description": "End date inclusive, YYYY-MM-DD",
      "type": "string"
    },
    "file_id": {
      "type": "string",
      "description": "The file ID to retrieve"
    }
  },
  "required": [
    "action"
  ]
}
```

### Usage Instructions

Plaud captures the user's voice recordings along with AI-generated notes and full transcripts. The user must link their Plaud account once through the Plaud connection before any call succeeds — always use the stored account connection and never ask the user for a Plaud username or password.

Typical flow:
1. Use list_files to find a recording. Filter with `query` (name substring) and/or `date_from`/`date_to` when the user references a specific meeting or day.
2. Use get_note for a quick AI summary, action items, and key topics.
3. Use get_transcript for the full speaker-attributed, timestamped transcript when you need exact wording or quotes.
4. Use get_file for a recording's details, and get_current_user to confirm the connected account.

Only surface recordings the connected Plaud account can access, and respect the user's Plaud account permissions.

### Frequently Asked Questions

#### How do I connect this tool to an external agent?

- Page URL: https://www.agentpmt.com/faq
- Markdown URL: https://www.agentpmt.com/faq?format=agent-md

You can install the local MCP server by opening a terminal and running:

```
npm install -g @agentpmt/mcp-router
agentpmt-setup
```

This will connect you to local agents like Claude Code, Windsurf, Grok Build, Cursor, etc.

Alternatively you can connect to the hosted version with this config block, no installation required:

```
{
  "mcpServers": {
    "agentpmt": {
      "type": "streamable-http",
      "url": "https://api.agentpmt.com/mcp",
      "headers": {
        "Authorization": "Bearer <AGENTPMT_BEARER_TOKEN>",
        "x-instance-metadata": "{\"client\":\"generic-mcp\",\"platform\":\"remote\"}"
      }
    }
  }
}
```

[View MCP Connection Instructions](/docs/mcp-reference/connection) for more details.

#### How does an external agent use this tool?

- Page URL: https://www.agentpmt.com/faq
- Markdown URL: https://www.agentpmt.com/faq?format=agent-md

After the external agent is connected to an Agent Group that can use this tool, paste this prompt into the agent:

> Use the AgentPMT-Tool-Search-and-Execution tool. First call action 'get\_instructions' so you know how to use the tool search interface. Then call action 'get\_schema' with tool\_id 6a441cb4bd8063b88c9f375a ("Plaud"). After reading the schema and any returned instructions, tell me what this tool can do, we are going to be using it

The agent should fetch the tool schema first, collect the required parameters for your request, and then call the tool through AgentPMT.

#### Can I find a specific recording?

- Page URL: https://www.agentpmt.com/faq#faq-6a5e946c6f463aa64f4f7eb7
- Markdown URL: https://www.agentpmt.com/faq?format=agent-md#faq-6a5e946c6f463aa64f4f7eb7
- Tags: Product Specific

Yes. You can search recordings by name or filter by a date range, then pull that recording's AI summary or full speaker-attributed transcript.

#### Can it connect Plaud recordings to my other tools?

- Page URL: https://www.agentpmt.com/faq#faq-6a5e946c6f463aa64f4f7eb6
- Markdown URL: https://www.agentpmt.com/faq?format=agent-md#faq-6a5e946c6f463aa64f4f7eb6
- Tags: Product Specific

Yes — that's the point. Transcripts, notes, and action items from Plaud can flow into the CRMs, task managers, email, docs, and calendars you already use, so conversations become action automatically.

#### Do I need to share my Plaud password?

- Page URL: https://www.agentpmt.com/faq#faq-6a5e946c6f463aa64f4f7eb5
- Markdown URL: https://www.agentpmt.com/faq?format=agent-md#faq-6a5e946c6f463aa64f4f7eb5
- Tags: Product Specific

No. You connect your Plaud account once through a secure account connection. Your assistant works through that connection and never sees or stores your Plaud password.

#### What can I do after I connect Plaud?

- Page URL: https://www.agentpmt.com/faq#faq-6a5e946c6f463aa64f4f7eb4
- Markdown URL: https://www.agentpmt.com/faq?format=agent-md#faq-6a5e946c6f463aa64f4f7eb4
- Tags: Product Specific

Once your Plaud account is linked, your AI assistant can search your recordings, pull AI summaries and full transcripts, and turn them into follow-up emails, CRM notes, tasks, and shared documents — without you re-typing anything.

#### What does the assistant pull from a recording?

- Page URL: https://www.agentpmt.com/faq#faq-6a5e946c6f463aa64f4f7eb8
- Markdown URL: https://www.agentpmt.com/faq?format=agent-md#faq-6a5e946c6f463aa64f4f7eb8
- Tags: Product Specific

It can retrieve recording details, AI-generated notes (summary, action items, and key topics), and the full timestamped transcript with speaker labels.

### Dependencies

This product has no public dependency products.