Skip to main content
Glama
extentos

extentos

addProjectSound

Upload a local audio file (MP3/M4A/AAC/WAV, under 1 MB) to a project's named-sound library, then play it in app code with glasses.audio.playSound(name). Use to add UI sounds while building your app.

Instructions

Upload a local audio file into a project's named-sound library. Pass the name app code will play it with and a path to an MP3/M4A/AAC/WAV file under 1 MB. After the next assistant start (app relaunch), every device running the app can glasses.audio.playSound(name) — and the sound appears in the dashboard's Agent section, where it can also be chosen as the wake sound. Code registrations (audio.registerSound) win over library sounds on name collisions. 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 provision an app's UI sounds while building it — e.g. a camera app's shutter click ({ name: "shutter", filePath: "./sounds/shutter.mp3" }). DON'T USE for the assistant's VOICE (that's setAssistantConfig) or for sounds the app should bundle locally (registerSound in app code needs no upload).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesThe play-by-name key, e.g. "shutter" — app code calls glasses.audio.playSound(name).
filePathYesPath to a local MP3/M4A/AAC/WAV file under 1 MB (relative to the working directory, or absolute).
appPackageYesThe app's package / bundle id (project_install_id), e.g. com.example.myapp.
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description fully covers behavioral traits: file size limit (under 1 MB), supported formats (MP3/M4A/AAC/WAV), timing of availability (after next assistant start), name collision behavior (code registrations win), access control (MCP grant), and error conditions (permission_denied, account_required).

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single paragraph that front-loads the main action and is well-organized. However, it is somewhat lengthy with multiple clauses. Nonetheless, every sentence contributes valuable information, so it earns a high score despite not being maximally concise.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has 3 required parameters, no output schema, and no annotations, the description is remarkably complete. It covers usage context, side effects, error handling, alternatives, and lifecycle behavior. No significant gaps remain.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, but the description adds extra context for each parameter: for 'name' it explains how it's used in app code, for 'filePath' it specifies path types (relative or absolute), and for 'appPackage' it clarifies it's the project_install_id. This goes beyond the schema's basic descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description starts with a clear verb ('Upload') and resource ('local audio file into a project's named-sound library'). It explicitly distinguishes this tool from siblings like setAssistantConfig and registerSound, stating when not to use it. The purpose is unambiguous and specific.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides explicit when-to-use ('provision an app's UI sounds while building it') and when-not-to-use ('don't use for the assistant's VOICE' or 'for sounds the app should bundle locally'). Additionally, it mentions prerequisites (linked Extentos account, MCP access grant) and error responses (401, 403).

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

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/extentos/mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server