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.
npx agentmods add skills/swih/mistral-mcp/audio-dispatchnpx skills add Swih/mistral-mcp --skill audio-dispatchgit clone --depth 1 https://github.com/Swih/mistral-mcpWrote 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.
[](https://agentmods.dev/skills/swih/mistral-mcp/audio-dispatch)<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>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.
| Model | Per session | Once 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 |
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.
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 profilefiles_upload(to upload a local audio file) — requiresMISTRAL_MCP_PROFILE=fullmistral_classify(optimized classification) — requiresMISTRAL_MCP_PROFILE=fullbatch_create(bulk processing of many speakers) — requiresMISTRAL_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(requiresMISTRAL_MCP_PROFILE=full), note thefile_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.
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.
- 6d ago First seen · 129 lines · 43 tokens per session scan A 3423a42c0efb
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.
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…
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".
workflows
Route outcome-focused Axon requests only when no more specific bundled workflow skill is already selected.
knowledge-ingest
Use when indexing docs portals where Axon Chrome rendering, capture-time automation scripts, or host browser-assisted URL discovery are needed.
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…
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.