Decent-Sampler Drums MCP Server

by dandeliongold
Verified

configure_round_robin

Configure round robin sample playback for a set of samples.

This tool will:

  • Validate sequence positions
  • Verify sample files exist
  • Generate proper XML structure for round robin playback

Error Handling:

  • Checks if sample files exist at specified paths
  • Validates sequence positions are unique and sequential
  • Ensures mode is one of: round_robin, random, true_random, always
  • Returns specific error messages for missing files or invalid sequences

Success Response: Returns XML structure with:

  • Configured playback mode
  • Sample sequence assignments
  • Proper group organization for round robin playback

Input Schema

NameRequiredDescriptionDefault
directoryYesAbsolute path to the directory containing samples
lengthYesNumber of round robin variations
modeYesRound robin playback mode
samplesYes

Input Schema (JSON Schema)

{ "properties": { "directory": { "description": "Absolute path to the directory containing samples", "type": "string" }, "length": { "description": "Number of round robin variations", "type": "number" }, "mode": { "description": "Round robin playback mode", "enum": [ "round_robin", "random", "true_random", "always" ], "type": "string" }, "samples": { "items": { "properties": { "path": { "description": "Path to sample file (relative to directory)", "type": "string" }, "seqPosition": { "description": "Position in the round robin sequence (1 to length)", "type": "number" } }, "required": [ "path", "seqPosition" ], "type": "object" }, "type": "array" } }, "required": [ "directory", "mode", "length", "samples" ], "type": "object" }