create_score
Set up a new music score by specifying title, composer, instruments, time signature, key signature, and tempo.
Instructions
Create a new score in Dorico.
Creates a new score with the specified settings. This is the starting point for any new composition.
Args: title: Score title (shown on first page) composer: Composer name instruments: List of instruments to add (e.g., ["Piano", "Violin", "Cello"]) time_signature: Time signature (e.g., "4/4", "3/4", "6/8") key_signature: Key signature (e.g., "C major", "G minor", "Bb major") tempo_bpm: Tempo in beats per minute (20-400)
Returns: Success status and score information
Examples: - Simple piano piece: create_score(title="Prelude", instruments=["Piano"]) - String quartet: create_score(instruments=["Violin", "Violin", "Viola", "Cello"]) - Orchestra: create_score(instruments=["Flute", "Oboe", "Clarinet", "Horn", "Violin", "Viola", "Cello", "Double Bass"])
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | No | Untitled | |
| composer | No | ||
| instruments | No | ||
| time_signature | No | 4/4 | |
| key_signature | No | C major | |
| tempo_bpm | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||