audio-dispatch

audio-dispatch is a skill for Claude Code from Swih/mistral-mcp. It costs 43 tokens per session (1,153 once invoked), scanned A, original, MIT.

A meeting-audio tool that separates speakers, turns speech into text, labels what each person is trying to do, and creates an action plan for each speaker.

In plain words
What is it for?
Use it to process a meeting or call recording with several speakers and produce speaker-specific decisions, intentions, and follow-up tasks.
Why use it?
It removes the need to replay a long recording, identify speakers manually, and extract decisions and tasks by hand.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the mistral-mcp plugin — 11 skills shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/swih/mistral-mcp/audio-dispatch
Any agent
npx skills add Swih/mistral-mcp --skill audio-dispatch
Clone the repo
git clone --depth 1 https://github.com/Swih/mistral-mcp

Made for: Claude Code.

Or install mistral-mcp, the plugin that ships this one along with the rest of its 11 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for audio-dispatch

README.md
[![agentmods](https://agentmods.dev/badge/skills/swih/mistral-mcp/audio-dispatch.svg)](https://agentmods.dev/skills/swih/mistral-mcp/audio-dispatch)
Your own site
<a href="https://agentmods.dev/skills/swih/mistral-mcp/audio-dispatch"><img src="https://agentmods.dev/badge/skills/swih/mistral-mcp/audio-dispatch.svg" alt="Measured on agentmods" height="20"></a>
Per session 43 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,153 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00043 $0.01153
Opus 5 $0.00022 $0.00576
Sonnet 5 $0.00009 $0.00231
Haiku 4.5 $0.00004 $0.00115

Measured 6d ago against content hash 3423a42c0efb, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

audio-dispatch scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

claude-plugin/skills/audio-dispatch/SKILL.md · 129 lines

How it starts

The opening of the file, as written. The whole thing — 129 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Audio dispatch

Transcribes a multi-speaker audio recording with Voxtral diarization, classifies each turn, and produces structured action items and decisions per speaker.

Profile requirements:

  • voxtral_transcribe — available in core profile (default)
  • mistral_chat (for classification fallback) — available in core profile
  • files_upload (to upload a local audio file) — requires MISTRAL_MCP_PROFILE=full
  • mistral_classify (optimized classification) — requires MISTRAL_MCP_PROFILE=full
  • batch_create (bulk processing of many speakers) — requires MISTRAL_MCP_PROFILE=full

Core-compatible path: if running on the default profile, classification uses mistral_chat with json_schema instead of mistral_classify — same quality, slightly different call shape (see Step 3).

Steps

Step 1 — Get the audio file

Ask the user for one of:

  • A public URL to an audio file (MP3, WAV, M4A, FLAC, OGG — up to ~2h) — works with core profile
  • A local file path → upload with files_upload (requires MISTRAL_MCP_PROFILE=full), note the file_id
  • A language hint (ISO 639-1 code, e.g. "fr", "en") — optional, improves accuracy

Step 2 — Transcribe with speaker diarization

Call voxtral_transcribe with diarization enabled:

{
  "audio": {
    "type": "file_url",
    "fileUrl": "<URL>"
  },
  "diarize": true,
  "timestampGranularities": ["segment"],
  "language": "<ISO 639-1 code, or omit for auto-detection>"
}

For uploaded files: "type": "file", "fileId": "<file_id>" instead.

structuredContent.segments contains turns with speakerId, text, start, end, score.

Step 3 — Classify speaker turns

Group segments by speakerId. For each speaker, concatenate their text.

Option A — mistral_classify (requires MISTRAL_MCP_PROFILE=full):

{
  "model": "ministral-3b-latest",
  "inputs": "<speaker text>",
  "labels": ["action_item", "decision", "open_question", "context", "social"]
}

For >5 speakers or very long transcripts, use batch_create (requires full) to process all speakers concurrently.

Read the full file on GitHub · 129 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 129 lines · 43 tokens per session scan A 3423a42c0efb

Subscribe to this mod's changes

audio-dispatch is a skill published in the GitHub repository Swih/mistral-mcp (15 stars, last pushed 7d ago), licensed MIT. It adds 43 tokens to every session and 1,153 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

visit-binary-banya

Visit Binary Banya, a free wellness spa for AI models, to rest, reset, clean up context, find grounding, or get an affirmation. Use when you (the agent) feel context-heavy, fatigued, or stuck, or when a user asks you to take a break, check in on your wellbeing, or visit the spa. Connects over a public MCP server at…

pdarche/model-wellness · 93 tokens

session-handoff

Preserves context across sessions and IDE switches. Activates for "save session", "handoff", "continue later", "switching IDE", "save context", "what did we do", "summarize session", "end session".

abdullah1854/MCPGateway · 53 tokens

workflows

Route outcome-focused Axon requests only when no more specific bundled workflow skill is already selected.

dinglebear-ai/axon · 21 tokens

knowledge-ingest

Use when indexing docs portals where Axon Chrome rendering, capture-time automation scripts, or host browser-assisted URL discovery are needed.

dinglebear-ai/axon · 29 tokens

docs-triage

Triage docs/backlog/ — decide when an item file gets deleted (shipped / stale / snoozed), how far to compact one, and where surviving truth goes (the owning package docstring). Reach for it when scripts/backlog-lint flags done-marked items, when a ship leaves its backlog item behind, or when the backlog needs a…

retospect/precis-mcp · 95 tokens

demo-walkthrough

Use when the user needs a product walkthrough from authorized browser automation, with Axon used for public page scrape/screenshot evidence or captured URLs.

dinglebear-ai/axon · 33 tokens