Skip to main content
Glama

get_track_fx_chunk

Retrieve a track FX plugin's raw state chunk to read or back up its full serialized preset data, including VSTi settings and chord progressions.

Instructions

Get the raw state chunk from an FX plugin (includes preset/state data).

Useful for reading VSTi state data like Toontrack EZkeys chord progressions. The chunk contains the full serialized state of the plugin.

Returns: Object with 'chunk' containing the FX state data string.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
fx_indexYes
track_indexYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.7.3

TDQS

B3.2/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. It does disclose that this is a read of the full serialized plugin state and describes the response payload, but it says nothing about chunk size, binary vs. text encoding, permissions, or whether the returned chunk is safe/valid to restore.

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?

Front-loaded with the core action and kept to a few short sentences. There is minor redundancy between 'includes preset/state data' and 'contains the full serialized state of the plugin', but no wasted structure.

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?

Since no output schema exists, it is appropriate that the description explains the return value ('chunk' string). It is nonetheless incomplete: with no annotations and zero parameter documentation, an agent lacks the indexing conventions and safety/behavioral context needed to call it confidently.

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

Parameters2/5

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

Schema description coverage is 0% for two required integer parameters, so the schema adds no meaning. The description never mentions track_index or fx_index, their indexing base, or how to resolve an FX index (e.g., via track_fx_get_list), leaving both parameters undocumented in both places.

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

Purpose4/5

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

States a specific verb and resource: 'Get the raw state chunk from an FX plugin', which distinguishes it from param-level siblings like track_fx_get_param and preset-level ones like get_fx_preset. It does not explicitly name or contrast those alternatives, so it falls short of a 5.

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?

Gives one concrete use case ('reading VSTi state data like Toontrack EZkeys chord progressions'), which implies when it is useful. However, there is no statement of when not to use it, no prerequisites, and no routing to sibling tools such as get_fx_preset or set_fx_preset.

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

Deploy Server

Other Tools