listProjectSounds
Retrieve the named-sound library for a project to see which sounds app code can play, using the app's package ID. Use this before adding a new sound to verify the name is not already taken.
Instructions
List a project's named-sound library — the sounds uploaded in the dashboard's Agent section or via addProjectSound. Returns { sounds: [{ id, name, url, createdAt }] }. Devices download + register the library at assistant start; app code plays any of them with glasses.audio.playSound(name). The SDK plays none of them on its own — every sound fires because app code asked for it. GATED by the project's MCP access grant (assistant_config.sounds — default Read+Write; a permission_denied 403 means the owner restricted it). Requires a linked Extentos account (a 401 returns account_required, run extentos-mcp login). USE to see which sound names app code can play, or before adding a sound to avoid a duplicate name. DON'T USE to add sounds (use addProjectSound).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| appPackage | Yes | The app's package / bundle id (project_install_id), e.g. com.example.myapp. |