Skip to main content
Glama
TypeWolf

lmms-mcp

by TypeWolf

load_project

Opens an existing LMMS project from a .mmpz or .mmp file path, making its tracks and settings available for programmatic editing.

Instructions

Load an existing LMMS project file (.mmpz or .mmp).

Args: path: Full path to the LMMS project file

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.7/5.0
Behavior2/5

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

With no annotations, the description carries the full burden. It explains what file types are accepted and that a path is needed, but does not disclose whether loading replaces the current project, discards unsaved changes, or requires the file to exist. This is a meaningful gap for a state-changing load operation.

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

Conciseness5/5

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

The description is two sentences plus a one-line arg note, front-loading the core purpose and adding only the necessary path detail. Every sentence earns its place.

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

Completeness3/5

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

The description covers the basic contract and an output schema exists, so return values do not need explanation. However, it omits the important context that loading a project likely replaces the current in-memory project, which an agent should know before invoking. This is a clear but not severe gap.

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

Parameters4/5

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

Schema coverage is 0%, so the description must compensate. It does by adding 'Full path' and naming the file formats, which gives the single pathway parameter real meaning beyond the bare string type. This is sufficient for the one parameter.

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 states a specific verb ('Load') and resource ('LMMS project file') with the accepted formats (.mmpz or .mmp). It also specifies 'existing', which distinguishes it from create_project and save_project.

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

Usage Guidelines3/5

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

Use is implied by 'Load an existing LMMS project file' and the sibling context, but there is no explicit guidance about when to prefer this over create_project or get_project_info. No exclusions or alternative conditions are stated.

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