get_calendar_week
Fetch a week's calendar summary showing daily post counts and draft samples. Use to view Monday-to-Sunday workload at a glance.
Instructions
Fetch the calendar aggregate for one week (Monday → Sunday). Returns { weekStart, days: DayAggregate[] } where days.length is exactly 7. Each DayAggregate has per-day counts by status and a sample of drafts, NOT the full list — use get_calendar_day to drill into a specific day. The weekStart MUST be a Monday in YYYY-MM-DD format or the server returns 400. Use this for 'what's my week look like' type queries.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| status | No | ||
| platform | No | ||
| weekStart | Yes | Monday of the week, YYYY-MM-DD, e.g. "2026-07-13". Server rejects non-Mondays with 400. |