wwise-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@wwise-mcponboard these 8 gunshots"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
You: "These 8 gunshots — make them playable in-game, per our conventions."
Claude: ✅ converted ✅ wrapped in a Random container ✅ created 8 Play_ events
✅ routed to the SFX bus ✅ added to the Main SoundBank
(preview shown first · one Ctrl+Z undoes the whole thing)Sound designers burn hours in plumbing mode — naming, building events, dragging folders, hunting "why is there no sound?". wwise-mcp hands all of that to the AI so you stay in your ears. Read the sound-designer's workflow →
✨ Why you'll want this
🩺 Catches real bugs. Events not in any SoundBank, empty sounds, and the classic code calls
AK_Reloadbut Wwise hasAK_Relodtypo — pinpointed to the exactfile:line.⚡ One-shot flows. "Onboard this batch" runs convert → container → events → bus → bank in a single sentence. "Check everything and fix what's safe" audits then fixes.
🛡️ Safe by design. Every write previews first and undoes in one Ctrl+Z. It never touches the risky stuff (duplicates, empty sounds) without you.
🎧 Stays out of your art. It does the plumbing; mixing, sound choice, and feel stay yours.
🔌 20 tools, every one live-validated against real Wwise 2024.1 — not vaporware.
Related MCP server: Unity MCP
Setup
In Wwise: User Preferences → enable Wwise Authoring API (WAMP, default port 8080), then open a project.
Install:
python3.12 -m venv .venv && . .venv/bin/activate && pip install -e .Register with your MCP client (stdio). Use the absolute path to the venv entry point so it works without activating the venv first. For Claude Code:
claude mcp add wwise -- /Users/inl/wwise-mcp/.venv/bin/wwise-mcpOr in an MCP client config JSON:
{ "mcpServers": { "wwise": { "command": "/Users/inl/wwise-mcp/.venv/bin/wwise-mcp" } } }
Tools
All 20 tools are live-validated against Wwise v2024.1.13. Write tools use a two-step
mode="plan" (preview + token) → mode="apply" (execute, undoable) flow.
For how this fits a sound designer's actual day, see WORKFLOW.md.
One-shot flows (compose the building blocks — start here)
Tool | What it does |
| Make sounds playable in one call: conversion → container → Play events → output bus → SoundBank (dry-run preview, then execute) |
| Audit, then auto-fix the fixable (rename / bank / bus) and flag the rest for a human |
Read / inspect
Tool | What it does |
| Connection / open-project health check |
| Report Wwise version + which tools work on it (run first on a new version) |
| Read-only WAQL query (capped results) |
| Full property/reference dump of one object (by GUID, path, or name) |
| Health checks: no Output Bus, empty container, empty sound, event-not-in-SoundBank, duplicate name |
| Flag names with whitespace / non-ASCII / not matching a regex |
| Objects-per-Output-Bus overview |
| Sources missing an original file / shared source paths |
| Diff Unity C# |
Document
Tool | What it does |
| Markdown audio-design doc (summary, event list, Mermaid bus tree) |
Write (plan/apply)
Tool | What it does |
| Batch property edit (volume, output bus, …) |
| Auto-create |
| Batch rename via a transform (default |
| Wrap objects into a new container and move them in |
| Batch-assign an Attenuation / Conversion ShareSet |
| Reparent objects under a target parent |
| Add objects to a SoundBank's inclusion list |
Action
Tool | What it does |
| Generate SoundBanks to disk + error-log summary |
Write tools show exactly what will change before anything is written, and each batch is one Ctrl+Z to undo.
Not yet implemented
RTPC/Switch wiring — deferred: the
@RTPCcurve-object structure could not be cleanly validated via WAAPI in this environment, so a write op was not shipped rather than ship an unvalidated mutation. Seedocs/superpowers/notes/.
Compatibility
Requires Wwise 2021.1+ (the version that introduced WAQL, which most tools use).
Run wwise_compat_check first on any untested version to see what works.
Wwise version | Status | Notes |
2024.1.13 | ✅ verified | All tools live-validated |
2021.1 – 2023.x | 🟢 expected | WAQL present, core APIs stable — please report via an issue |
< 2021.1 | ❌ unsupported | No WAQL; query-based tools return a clear version error |
Help expand this matrix: see CONTRIBUTING.md — capturing your version
takes ~5 minutes and no coding (python scripts/capture_fixtures.py → PR).
Tests
pytest -m "not integration" # unit + contract (runs across all version fixtures) — no Wwise needed
pytest -m integration # requires a running Wwise + open projectDesign & plans
Design spec:
docs/superpowers/specs/2026-06-13-wwise-mcp-design.mdFoundation plan:
docs/superpowers/plans/2026-06-13-wwise-mcp-foundation.mdOpen WAAPI questions:
docs/superpowers/notes/waapi-precondition-findings.md
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/linnn-nb/wwise-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server