Automation Recipes
Shareable JSON workflows that chain MCP tools together. Copy a recipe, drop it into your Grip OS config, and it runs on schedule or on demand.
Browse by Category
Featured Recipes
Fleet Health Check
beginnerRuns a comprehensive health report across all fleet machines and lists their status.
Daily Backup Verify
intermediateVerifies that backups completed successfully and audits credential access for the backup service.
GitHub PR Radar
beginnerScans your repositories for open pull requests and surfaces ones that need attention.
Disk Space Monitor
beginnerMonitors disk usage across fleet machines and alerts when thresholds are exceeded.
Deploy Canary Check
advancedValidates a canary deployment by running health checks and comparing metrics against the baseline.
Security Posture Review
intermediateGenerates a comprehensive security posture report including policy status, active alerts, and compliance score.
All Recipes (30)
Create Your Own
Recipes are JSON files with a simple schema: define steps that call MCP tools, pipe outputs between them with {{output_name}} templates, and optionally schedule them with cron.
{
"id": "my-recipe",
"name": "My Custom Recipe",
"version": "1.0.0",
"steps": [
{
"id": "step-1",
"tool": "tool_name",
"server": "mcp-server-name",
"output_as": "result"
},
{
"id": "step-2",
"tool": "another_tool",
"server": "mcp-server-name",
"arguments": { "input": "{{result}}" }
}
]
}