# Social Media Calendar Generator — REST API endpoint `social-media-calendar-generator`

Turn a list of planned social media posts into a content calendar: a CSV export (Date, Time, Platform, Content Type, Title, Description, Hashtags), a plain-text schedule, posts grouped by date, counts per platform and content type, and a Monday-first month grid for the month you choose (default: the month of the earliest post). Each post needs a date, a platform (e.g. Instagram, Twitter/X, LinkedIn, TikTok, Facebook, YouTube), a content type (Post, Story, Reel, Video, Article, Thread, Live) and a title.

- Category: productivity
- MCP server: https://mcp.findutils.com/ (Streamable HTTP, no API keys, 120 req/min per IP)
- REST endpoint: POST https://api.findutils.com/api/tools/social-media-calendar-generator/execute (no API keys, 60 req/min per IP)
- Reference page: https://findutils.com/api/social-media-calendar-generator/
- Same tool on the other surface: https://findutils.com/mcp/social-media-calendar-generator/

## Call the endpoint (verified example)

```bash
curl -X POST https://api.findutils.com/api/tools/social-media-calendar-generator/execute \
  -H "Content-Type: application/json" \
  -d '{
    "posts": [
      {
        "date": "2026-09-05",
        "time": "10:00",
        "platform": "Instagram",
        "content_type": "Reel",
        "title": "Product Showcase"
      }
    ]
  }'

# Parameter schema
curl https://api.findutils.com/api/tools/social-media-calendar-generator
```

## Input schema

| Argument | Type | Required | Description |
|---|---|---|---|
| `posts` | array | yes | Planned posts: { date (YYYY-MM-DD), time (HH:MM), platform, content_type, title, description, hashtags }. |
| `month` | string | no | Month to render the grid for, YYYY-MM. Default: month of the earliest post. |

Example arguments (verified):

```json
{
  "posts": [
    {
      "date": "2026-09-05",
      "time": "10:00",
      "platform": "Instagram",
      "content_type": "Reel",
      "title": "Product Showcase"
    }
  ]
}
```

OpenAPI 3.1 spec: https://findutils.com/api/openapi.json · Interactive docs: https://findutils.com/api/docs/

## Also an MCP tool

```bash
claude mcp add findutils --transport http https://mcp.findutils.com/
```

Then ask the client to call `findutils:social_media_calendar_generator`. Full MCP reference: https://findutils.com/mcp/social-media-calendar-generator/

---
Full catalog: GET https://api.findutils.com/api/tools · https://findutils.com/api/ · https://findutils.com/llms.txt
