-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathworkflows.json
More file actions
27 lines (27 loc) · 750 Bytes
/
workflows.json
File metadata and controls
27 lines (27 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"workflows": [
{
"name": "example-tts-workflow",
"description": "Generates speech from text using ElevenLabs and saves it.",
"steps": [
{
"id": "generate_speech",
"server": "elevenlabs-mcp-server",
"tool": "elevenlabs_tts",
"arguments": {
"text": "This is a test from Saiku Workflow!",
"filename": "saiku_workflow_test_output"
}
},
{
"id": "log_completion",
"server": "mcp-server-commands",
"tool": "run_command",
"arguments": {
"command": "echo 'Workflow completed. Speech saved to ${steps.generate_speech.result.filePath}'"
}
}
]
}
]
}