Social Media Calendar Generator

Productivity REST API MCP

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.

This page documents the MCP tool findutils:social_media_calendar_generator. See the REST reference →

Call it over MCP

Tool name findutils:social_media_calendar_generator · no API keys · 120 requests/min per IP

Claude Code

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

Claude Desktop — claude_desktop_config.json

{
  "mcpServers": {
    "findutils": {
      "url": "https://mcp.findutils.com/"
    }
  }
}

Raw JSON-RPC (any MCP client) — verified example

curl -X POST https://mcp.findutils.com/ \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/call",
    "params": {
      "name": "social_media_calendar_generator",
      "arguments": {
        "posts": [
          {
            "date": "2026-09-05",
            "time": "10:00",
            "platform": "Instagram",
            "content_type": "Reel",
            "title": "Product Showcase"
          }
        ]
      }
    }
  }'

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)

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

Also a REST endpoint

The same tool answers plain HTTP at POST /api/tools/social-media-calendar-generator/execute — no key, 60 requests/min.

Open the REST reference for Social Media Calendar Generator →

More Productivity tools