We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/kestra-io/mcp-server-python'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
backfill.md•802 B
Create a flow with YAML:
```yaml
id: scheduled_flow
namespace: dev
tasks:
- id: label
type: io.kestra.plugin.core.execution.Labels
labels:
scheduledDate: "{{trigger.date ?? execution.startDate}}"
- id: external_system_export
type: io.kestra.plugin.scripts.shell.Commands
taskRunner:
type: io.kestra.plugin.core.runner.Process
commands:
- echo "processing data for {{trigger.date ?? execution.startDate}}"
- sleep $((RANDOM % 5 + 1))
triggers:
- id: schedule
type: io.kestra.plugin.core.trigger.Schedule
cron: "*/30 * * * *"
```
Backfill executions for the flow scheduled_flow in the namespace dev for the last 3 hours
Backfill executions for the flow scheduled_flow in the namespace dev for the last 2 days