1. Conduid
  2. Developer Tools
  3. Audiogen MCP
MCP server · Developer Tools

Audiogen MCP

MCP server for AI sound effect generation using Meta's AudioGen

Unclaimed MIT last commit 7 months ago devtools
53Fair

Scored yesterday · breakdown

About Audiogen MCP

Audiogen MCP is an MCP server published by peerjakobsen in the Developer Tools category: mCP server for AI sound effect generation using Meta's AudioGen. It has been installed 0 times through Conduid.

Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx audiogen-mcp

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Audiogen MCP

Powered by Claude · Grounded in docs

I know everything about Audiogen MCP. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

Releases

v0.1.0v0.1.0 - Initial Release · 25 Jan 2026AudioGen MCP Server v0.1.0 MCP server for generating sound effects from text descriptions using Meta's AudioGen model. Features Text-to-sound effect generation Apple Silicon optimized (MPS acceleration) Batch generation support Claude Code…

README

AudioGen MCP Server

PyPI version

An MCP server that generates sound effects from text descriptions using Meta's AudioGen model. Designed for Apple Silicon Macs.

Prerequisites

  • macOS with Apple Silicon (M1/M2/M3/M4)
  • Python 3.9-3.11 (3.12+ not yet supported by audiocraft)
  • ffmpeg: brew install ffmpeg
  • ~4GB disk space for model weights
  • ~8GB RAM recommended

Installation

Due to audiocraft's complex dependencies (xformers doesn't build on Apple Silicon), installation requires a specific order:

# Create virtual environment with Python 3.11
uv venv ~/.audiogen-env --python 3.11
source ~/.audiogen-env/bin/activate

# Install audiocraft without its problematic dependencies
uv pip install audiocraft --no-deps

# Install the actual dependencies (skipping xformers)
uv pip install torch torchaudio transformers huggingface_hub encodec einops \
    flashy num2words sentencepiece librosa av julius spacy torchmetrics \
    hydra-core hydra-colorlog demucs lameenc

# Install audiogen-mcp
uv pip install audiogen-mcp

The first run will download the AudioGen model (~2GB).

Configure Claude Code

claude mcp add audiogen ~/.audiogen-env/bin/python -- -m audiogen_mcp.server

Or add to ~/.config/claude/claude_desktop_config.json:

{
  "mcpServers": {
    "audiogen": {
      "command": "/Users/YOUR_USERNAME/.audiogen-env/bin/python",
      "args": ["-m", "audiogen_mcp.server"]
    }
  }
}

Available Tools

Tool Description
generate_sound_effect Start a background generation job, returns job_id
check_generation_status Poll job status by job_id until completed
list_generation_jobs List all jobs and their current status
list_generated_sounds List previously generated audio files
get_model_status Check if model is loaded and device info

How It Works

Generation runs in the background to avoid timeouts:

  1. Call generate_sound_effect with your prompt → returns job_id
  2. Poll check_generation_status with the job_id every 10-15 seconds
  3. When status is completed, the result includes file_path

Example Prompts

Once configured, ask Claude Code to generate sounds:

  • "Generate an explosion sound effect"
  • "Create a dark ambient tension drone, 10 seconds"
  • "Make a retro 8-bit power-up sound, 2 seconds long"
  • "Generate footsteps on gravel, 5 seconds"

Prompt Tips

For best results, be specific:

# Good
"glass breaking, single wine glass falling on tile floor"
"8-bit arcade explosion, retro game style"
"dark ambient tension drone, synth pad, ominous low frequency rumble"

# Less good
"glass sound"
"explosion"
"ambient"

Include style, mood, and context for better results.

Performance

  • ~18 seconds to generate 1 second of audio on Apple Silicon
  • 5 seconds of audio ≈ 90 seconds generation time
  • 10 seconds of audio ≈ 180 seconds generation time
  • First generation takes longer (model loading ~5s)
  • Uses Metal Performance Shaders (MPS) for GPU acceleration

Output

Generated files save to ~/audiogen_outputs/ by default as WAV or OGG files.

Troubleshooting

Installation fails with xformers error

This is expected on Apple Silicon. The server mocks xformers at runtime since it's only needed for CUDA. If audiocraft installation fails, try:

uv pip install torch torchaudio
uv pip install audiocraft --no-build-isolation

Model download fails

Ensure stable internet and sufficient disk space. The model downloads from HuggingFace Hub.

Slow generation

Check device with get_model_status tool. CPU fallback is 10-20x slower than MPS.

MPS not available

Requires macOS 12.3+ and PyTorch 2.0+.

License

MIT License - see LICENSE file.

Acknowledgments

README mirrored from the source repository yesterday. The original is authoritative.

Questions

About Audiogen MCP

How do I install Audiogen MCP?

Run npx audiogen-mcp, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Audiogen MCP safe to use with an AI agent?

Its trust score is 53 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Audiogen MCP still maintained?

The last commit was 7 months ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.