Lacuna Music
Server Details
Generate AI music via the Lacuna Music API from MCP clients like Claude Desktop & Code.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- JOYLINK-LTD/lacuna-toolkit
- GitHub Stars
- 4
- Server Listing
- lacuna-mcp
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.3/5 across 3 of 3 tools scored.
Each tool addresses a distinct stage of the workflow: list_models for discovery, generate_music for task creation, and get_generation for status/results. There is no overlap between them.
All tool names follow the same verb_noun pattern in lowercase snake_case: generate_music, get_generation, list_models. This is perfectly consistent and predictable.
Three tools is well-scoped for a music generation API. Each tool has a clear, necessary role, and none are redundant or missing.
The tool surface covers the complete user workflow: list available models, create a generation task, and retrieve the finished output. No obvious gaps exist.
Available Tools
3 toolsgenerate_musicGenerate musicAInspect
Create an AI music generation task on Lacuna. Returns immediately with a pending task; poll get_generation to retrieve the finished tracks and their audio URLs.
| Name | Required | Description | Default |
|---|---|---|---|
| model | No | Generation model. Defaults to `aether`. Call `list_models` for what each one covers. | |
| style | Yes | Style description, e.g. "pop, female vocal, 120 bpm, energetic". | |
| title | Yes | Track title. | |
| lyrics | No | Lyrics in plain text. Required unless `instrumental` is true. | |
| audio_weight | No | Audio reference weight 0–1 (aether only). | |
| instrumental | No | Generate an instrumental track (no lyrics). Defaults to false. | |
| style_weight | No | Style weight 0–1 (aether only). | |
| vocal_gender | No | Lead vocal gender hint (aether only). | |
| negative_tags | No | Negative style tags to avoid (aether only). | |
| weirdness_constraint | No | Weirdness constraint 0–1 (aether only). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses a key behavioral trait not captured by annotations: the operation is asynchronous, returning immediately with a `pending` task and requiring polling. This adds value beyond the annotations (readOnlyHint=false, openWorldHint=true, destructiveHint=false), which only hint at mutability. It doesn't mention failure modes or other side effects, but the critical async nature is clearly stated.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence of 29 words, front-loaded with the action and then immediately explaining the return behavior. Every word is informative, with no filler or repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers the essential workflow—initiate the task, receive a pending response, and poll get_generation for results—which is adequate for a complex tool given the rich schema. It does not mention model selection or prerequisites, but those are already in the schema, and the async pattern is the most critical aspect. Minor gap: it could hint that more detailed model guidance is in list_models, but that is referenced in the schema anyway.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, and the description itself adds no parameter-level detail beyond the schema (e.g., it never mentions style, title, or model). Since the schema fully documents all 10 parameters, the baseline of 3 applies; the description contributes nothing extra here.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses the specific verb 'Create' and identifies the resource as 'an AI music generation task on Lacuna', clearly distinguishing it from the sibling tools. It also contrasts with get_generation by stating it returns a pending task immediately, making the tool's role unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly names the alternative `get_generation` for retrieving finished tracks and audio URLs, establishing a clear when-to-use this tool (initiate generation) and when-to-use the sibling (poll for results). This provides direct usage guidance beyond the schema.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_generationGet generationARead-onlyInspect
Retrieve the current state of a music generation task by id. Status is pending, ready, or failed; audio URLs appear on ready.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Generation task id, returned by generate_music. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is covered. The description adds valuable behavioral detail beyond annotations: the possible statuses (pending, ready, failed) and that audio URLs only appear on 'ready'. This helps the agent interpret the response and understand the lifecycle. It doesn't describe error responses or behavior for unknown ids, but that is a minor gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences convey the purpose and key behavioral details without fluff. Every word adds value: the verb, the resource, the status set, and the audio URL note. Front-loaded with the core action and then elaborates efficiently.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (one parameter, no output schema), the description is complete. It covers what the tool does, the status values, and when audio URLs appear. Annotations handle safety hints, and sibling names provide context for the tool's role. No critical information is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%; the parameter 'id' is already described as 'Generation task id, returned by generate_music.' The description adds little beyond the schema, only implicitly referencing 'by id'. Therefore, the baseline of 3 is appropriate since the schema handles the parameter meaning.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Retrieve' and the resource 'current state of a music generation task by id'. It also differentiates from siblings: generate_music creates tasks, list_models lists models, while this tool fetches task state. The mention of statuses and audio URLs makes the function unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage context: after generating music with generate_music, one polls this tool with the returned id to check status. It explains what statuses mean and that audio URLs appear when ready, giving clear context for when to call it. However, it does not explicitly name alternatives or state when not to use it, so it falls short of a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_modelsList modelsARead-onlyInspect
List the music models available through the API, with their credit cost per task, tracks produced per task, and language coverage.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already indicate a safe read-only operation (readOnlyHint: true, destructiveHint: false). The description adds useful context about what information is returned (credit cost, tracks produced, language coverage), but it does not disclose additional behavioral traits such as pagination, rate limits, or authentication requirements. This matches the baseline for a read-only list tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, well-structured sentence that is front-loaded with the core purpose ('List the music models') and immediately provides the key details of what is included. There is no redundant or extraneous information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter, read-only list tool with no output schema, the description is sufficiently complete. It names the resource and explicitly enumerates the main return fields (credit cost per task, tracks produced per task, language coverage), giving the agent a clear expectation of what the result contains.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, and the schema is empty with 100% coverage by definition. The description does not need to explain parameters, and the baseline score for zero parameters is 4. It appropriately focuses on the output rather than inputs.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('List') and the resource ('music models available through the API'), and explicitly distinguishes it from sibling tools like generate_music and get_generation by focusing on listing available models rather than creating or retrieving generations.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies the tool is used to see available models and their metadata, but it does not explicitly state when to use it versus alternatives. For instance, it does not mention 'Use this before generate_music to select a model.' The context of sibling tools suggests usage, but there is no direct guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- Alicense-qualityDmaintenanceEnables interaction with Mureka's AI music generation APIs to create lyrics, songs, and background music through MCP clients like Claude Desktop and OpenAI Agents.MIT
- Alicense-qualityAmaintenanceGenerates original AI music through Claude, powered by ACE-Step 1.5, running entirely on your local machine with no cloud dependency.4Apache 2.0

Clipia MCPofficial
AlicenseAqualityAmaintenanceGenerate AI images, video, speech, and music from Claude, ChatGPT, Cursor, and other MCP clients through the Clipia API.15MIT- AlicenseAqualityDmaintenanceEnables Claude Desktop and other MCP clients to generate images, videos, music, and audio using Fal.ai models. Supports text-to-image generation, video creation, music composition, text-to-speech, audio transcription, and image enhancement through natural language prompts.1852MIT
Your Connectors
Sign in to create a connector for this server.