
Build it yourself: Cooky
Learn step by step how to build Cooky yourself.
Step 1 of 4
Create recipe database in Supabase
Create tables for recipes and weekly plans with ingredients as JSONB, nutrition values, and tags.
sql
create table recipes (
id uuid primary key default gen_random_uuid(),
user_id uuid references auth.users,
name text not null,
ingredients jsonb not null,
instructions text[],
prep_time int,
calories int,
tags text[]
);
create table meal_plans (
id uuid primary key default gen_random_uuid(),
user_id uuid references auth.users,
week_start date not null,
meals jsonb not null,
shopping_list jsonb
);Learn to build Cooky
Module 06: MCP Protocol Deep Dive
Master the Model Context Protocol (MCP) – the standard for agent-to-agent communication. Learn how to make your agents work together as a coordinated family.
3.5 hours10 Lessons
Go to course module