← Back to Dashboard
1. Governance & the Linux Foundation2. MCP Gateways & Proxies3. Enterprise Security & Audit4. Multimodal & Audio Content5. The Official MCP Registry
Multimodal & Audio Content
Beyond Text and Images
The 2025-2026 spec expansions added support for audio content blocks, enabling MCP servers to interface with voice analysis, transcription, and Text-to-Speech (TTS) APIs.
Audio Content Blocks
// Returning audio from a TTS tool:
server.tool("text_to_speech", "Convert text to speech",
{ text: z.string(), voice: z.string().optional() },
async ({ text, voice }) => {
const audioBuffer = await ttsEngine.synthesize(text, voice);
return {
content: [{
type: "audio",
data: audioBuffer.toString("base64"),
mimeType: "audio/wav"
}]
};
}
);
Content Block Types (2026)
| Type | Use Case | Format |
|---|---|---|
| text | Responses, logs, data | Plain text / markdown |
| image | Charts, screenshots, photos | Base64 PNG/JPEG/WebP |
| audio | TTS, voice analysis, recordings | Base64 WAV/MP3/OGG |
| resource | Embedded resource references | URI + text/blob |
💡 Key Insight: Audio support opens MCP to voice-first applications - imagine an AI assistant that can listen to a meeting recording via MCP, transcribe it, and create action items.
🧪 Knowledge Check
Press 1-4 to select1 of 3
What new content modality was added to MCP in 2025-2026?
Video streaming
Audio content blocks
3D models
Holographic data