MCP MCP Server

Give your AI agents the ability to listen. Microphone capture and speech-to-text tools for MCP-compatible agents.

Local serverstdioGo

What is the MCP MCP server?

Give your AI agents the ability to listen. Microphone capture and speech-to-text tools for MCP-compatible agents. That is what the mcp mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

Getting it running

mcp-listen on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.

The tools it exposes

The server publishes 3 tools. What each one is for:

  • list_audio_devices — List available microphone input devices
  • capture_audio — Record audio from the microphone and save as WAV
  • voice_query — Capture, transcribe (whisper.cpp), and query a local LLM (Ollama)

What it needs from you

Configuration is passed through the environment: WHISPER_MODEL_PATH. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Supported platforms: - Windows x64 - macOS Apple silicon (arm64) - Linux x64 and arm64 (glibc) Intel Mac (darwin-x64) is not supported: Apple has discontinued the platform and no decibri binary is published for it. For list_audio_devices and capture_audio: - Node.js 18+ - A microphone For voice_query (optional): - Ollama running locally - Whisper GGML model

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

How it compares

This sits in the AI and media services group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. MCP's toolset — list_audio_devices, capture_audio, voice_query — is a fair guide to whether it matches your workflow. It is maintained by Decibri; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Available tools

ToolWhat it does
list_audio_devicesList available microphone input devices
capture_audioRecord audio from the microphone and save as WAV
voice_queryCapture, transcribe (whisper.cpp), and query a local LLM (Ollama)

How to install the MCP MCP server

{
  "mcpServers": {
    "listen-618c31": {
      "command": "npx",
      "args": ["-y", "mcp-listen"],
      "env": {
        "WHISPER_MODEL_PATH": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

Supported platforms: - Windows x64 - macOS Apple silicon (arm64) - Linux x64 and arm64 (glibc) Intel Mac (darwin-x64) is not supported: Apple has discontinued the platform and no decibri binary is published for it. For list_audio_devices and capture_audio: - Node.js 18+ - A microphone For voice_query (optional): - Ollama running locally - Whisper GGML model

VariableDescriptionRequired
WHISPER_MODEL_PATHFilesystem location the server is allowed to use.Optional

Example prompts to try

  • Use MCP to list audio devices.
  • Use MCP to capture audio.
  • Use MCP to voice query.

Frequently asked questions

The source code is linked from the repository URL on this page.