quantize
Align musical patterns to a specified rhythmic grid by adjusting timing to match divisions like 1/16 notes, ensuring precise synchronization in live coding and music generation workflows.
Instructions
Quantize to grid
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| grid | Yes | Grid size (e.g., "1/16") |
Implementation Reference
- Schema and registration for the 'quantize' MCP tool, defining input as grid size string. No handler implementation found in executeTool switch statement.{ name: 'quantize', description: 'Quantize to grid', inputSchema: { type: 'object', properties: { grid: { type: 'string', description: 'Grid size (e.g., "1/16")' } }, required: ['grid'] }