Help us improve
Share bugs, ideas, or general feedback.
Claude Code plugin for Plaud AI recordings, transcripts, and MCP server
npx claudepluginhub harshav167/plaud-pluginClaude Code plugin for Plaud AI — manage recordings, transcripts, summaries, and audio via CLI commands, MCP tools, prompts, and skill resources
RuFlo Marketplace: Claude Code native agents, swarms, workers, and MCP tools for continuous software engineering
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Production-ready workflow orchestration with 84 marketplace plugins, 192 local specialized agents, and 156 local skills - optimized for granular installation and minimal token usage
Share bugs, ideas, or general feedback.
Manage Plaud AI recordings, transcripts, summaries, and memory search directly from Claude Code.
.mcp.json/status -- Daily briefing/ls -- Browse recordings/transcribe <ref> -- Get transcript/search <query> -- Search recordings + memory# Clone into your Claude Code plugins directory
git clone https://github.com/harshav167/plaud-plugin ~/.claude/plugins/plaud
Then edit .mcp.json in the plugin directory to point to your Plaud MCP server:
{
"mcpServers": {
"plaud": {
"type": "http",
"url": "https://your-server.example.com/mcp"
}
}
}
Set the PLAUD_MCP_URL environment variable for the session-check hook:
export PLAUD_MCP_URL="https://your-server.example.com/mcp"
The server uses GitHub OAuth — no manual tokens or env vars needed. Claude handles the OAuth flow automatically when you first connect to the MCP server.
Known limitation: The
agentsfield inplugin.jsonis not supported when installing from a remote marketplace URL (Claude Code validates it as "Invalid input"). Aria's agent file (agents/recording-assistant.md) is present in the repo but is currently excluded fromplugin.jsonto allow installation. To use Aria, copyagents/recording-assistant.mdto~/.claude/agents/manually after installing.
| Command | Description |
|---|---|
/status | Daily briefing -- recent recordings, index health, backlog |
/ls | Browse and filter recordings |
/transcribe | Get transcript (checks cache first) |
/search | Dual-path search (metadata + semantic memory) |
/summary | View AI summary or meeting notes |
/download | Get audio download URL |
/fetch-all | Bulk export recordings |
/generate | Trigger Plaud AI processing |
| Prompt | Purpose |
|---|---|
daily_briefing | Status overview — recent recordings, queue, memory |
analyze_transcript | Deep analysis of a recording |
search_memory | Guided dual-path search |
bulk_summary | Summarize multiple recordings |
| Skill | Scope |
|---|---|
| recording-search | Find and browse recordings |
| memory-search | Semantic search across transcripts |
| transcription | ElevenLabs transcription with cost awareness |
| bulk-operations | Batch ingestion and auto-polling |
| using-plaud-mcp | Quick-start MCP tool reference |
| using-plaud-cli | CLI usage guide |
Skills as Resources: The MCP server exposes all 6 skills as MCP resources (12 total:
SKILL.md+_manifesteach). Any MCP client can discover and read skill documentation without installing the plugin.
All tools are prefixed mcp__plaud__:
| Tool | Purpose | Cost |
|---|---|---|
| find_recordings | Browse/filter recordings | Free |
| get_recording | Recording metadata | Free |
| get_audio_url | Download URL (5min expiry) | Free |
| transcribe | ElevenLabs transcript | Credits* |
| get_content | Summary/notes | Free |
| trigger_processing | Plaud AI processing | Free |
| get_account_info | Account info | Free |
| get_processing_status | Queue status | Free |
| list_languages | Language codes | Free |
| memory_search | Search indexed transcripts | Free |
| memory_ingest | Bulk index recordings | Credits** |
*Cached transcripts return free. **With source="all" only; source="cache" is free.
Session state: Tools accepting file_ref support persistent row-number resolution across calls — call find_recordings once, then use row numbers in subsequent transcribe, get_content, etc. calls within the same session.
Elicitation: transcribe and memory_ingest(source="all") prompt for confirmation before consuming credits. Older MCP clients that don't support elicitation skip the prompt and proceed directly.
This plugin connects to a plaud-cli MCP server. See that repo for server deployment instructions.