Skip to main content
Glama
btdt

famistudio-mcp

Official
by btdt

Write a FamiStudio .fms file from a song spec

create_fms
Idempotent

Writes a FamiStudio .fms file to disk from a JSON song specification, returning the file path and a structural summary.

Instructions

Convenience wrapper around compile_song_spec that always writes a .fms file and returns its path plus a structural summary. Use this when the goal is a file on disk.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
specYesSong specification: a project of one or more songs made of per-channel note tracks.
outputPathYesDestination path, e.g. "BGM_battle.fms".

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already signal this is a non-read-only, non-destructive, idempotent operation. The description adds useful behavioral context by stating it always writes a .fms file and returns a path plus structural summary. It does not explain overwrite behavior, but the idempotent hint and 'always writes' phrasing cover the essential side effect.

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?

Two sentences with no wasted words. The core behavior and return value are stated first, followed by a clear use case. Every sentence contributes useful information.

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

Completeness4/5

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

For a two-parameter wrapper, the description gives the key facts: it writes a file, returns its path, and returns a structural summary. Since there is no output schema, mentioning the return value is especially valuable. Minor details like overwrite behavior or summary contents are absent but not critical for invocation.

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

Parameters3/5

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

Schema description coverage is 100%, so the schema already documents the spec object and outputPath thoroughly. The description adds no new parameter-level meaning beyond the title's reference to a 'song spec.' This is the appropriate baseline given the schema's completeness.

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 clearly states the operation: a convenience wrapper around compile_song_spec that writes a .fms file and returns its path plus a structural summary. It distinguishes itself from the sibling compile_song_spec by emphasizing the file-writing behavior.

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

Usage Guidelines4/5

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

The description gives explicit usage guidance: 'Use this when the goal is a file on disk.' It also names the alternative compile_song_spec, which helps an agent distinguish the two. It stops short of explicitly stating when not to use it, but the conditional framing makes the intended use clear.

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