← MCP overview
MCP Server

MCP changelog

Updates to the AudioScape MCP server.


v0.5.0

2026-07-07
  • get_mixer_sdk now returns a small fetch-bootstrap instead of inlining the full Mixer SDK source: the installer downloads the version-pinned bundle over HTTP at install time, so it needs HttpService enabled (Game Settings → Security → Allow HTTP Requests). Upgrade semantics are unchanged — idempotent by version, Sounds/Soundtrack and bus settings preserved, and an HTTP failure leaves your place untouched.
  • get_quickstart_kit now returns a manifest (kit version + each file's install path and resource URI) instead of every file's contents in one oversized response. Your AI reads each kit file as an audioscape://kit/<path> MCP resource and writes it to ~/.claude/skills/ — no more save-to-file detours on large payloads.
  • Kit files are listed and readable as MCP resources only for quickstart early-access accounts, same gate as get_quickstart_kit itself.

v0.4.0

2026-06-25
  • New tool: verify_mixer_setup — read-only preflight that checks whether the Mixer SDK (the runtime audio engine) is installed and current at ReplicatedStorage.AudioScape.AudioScape. Distinct from verify_studio_setup, which checks the Catalog SDK in ServerStorage.
  • New tool: get_mixer_sdk — after you grant permission, returns a version-stamped installer that creates or upgrades the Mixer SDK in your place (idempotent; preserves your existing Sounds/Soundtrack and bus settings). Your AI applies it via the Roblox Studio MCP.
  • Action required: get_mixer_sdk uses a new audio:write permission. Existing MCP connections will need to re-authorize once (run /mcp, select audioscape, approve) — calls that need audio:write return a permission error until you do.

v0.3.0

2026-06-11
  • New tool: get_quickstart_kit — serves the versioned AudioScape skills kit for Claude Code to early-access users. Entry point: the one-paste /docs/mcp/quickstart page.
  • New tool: submit_feedback — structured early-access reports (onboarding / session / issue), forwarded to the AudioScape team.
  • New resource: audioscape://docs/quickstart-runbook — the agent-facing setup runbook behind the quickstart.
  • verify_studio_setup now targets Studio's built-in MCP server: probe hints renamed run_code → execute_luau, response field run_code_snippet → luau_snippet.

v0.2.0

2026-04-28
  • New tool: provision_production_key — returns a portal link for creating production game keys; the key value is revealed in the user's browser, never through the MCP.
  • New tool: verify_studio_setup — structured Studio integration checklist with run_code probe hints designed to chain with the Roblox Studio MCP, plus a manual fallback.
  • Scaffolders now emit the studio/production split using HttpService:GetSecret("AudioScapeKey") instead of the prior insecure ModuleScript pattern.
  • Initialize instructions updated to walk AI clients through the new validate_setup → scaffold → provision_production_key → verify_studio_setup lifecycle.
  • /keys page now highlights the just-created production key with the Roblox Secret recipe, and shows a dual-key explainer when MCP keys are present.
  • /oauth/consent restyled with a "what approving does" summary and a preview of the exact key name that will be created.

v0.1.0

2026-04-24
  • Initial release at https://mcp.audioscape.ai. Sign in with Roblox via the developer portal.
  • 8 catalog tools: search and browse music + SFX, find similar tracks, get beat grid + section structure, validate setup.
  • 2 scaffolders: picker UI (music or SFX) and lobby music player with engagement signals.
  • 6 SDK reference resources auto-loaded by your AI client.
  • MCP activity dashboard shows every call your AI makes on your behalf in real time.