We use analytics and marketing cookies to understand how Grip OS is discovered and used. No data leaves your device without consent. Cookie Policy

Recipes

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.

30 Recipes8 CategoriesCopy & Run

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}}" }
    }
  ]
}