_ registry / mcp streamable-http · checked 4h ago

sendit

https://sendit.infiniteappsai.com

Registry code: 47114e9d8fcb72cc

api record

AI-native social media publishing to LinkedIn, Instagram, Threads, TikTok, and X.

from a public catalogue that lists it, not from the operator

endpoint
https://sendit.infiniteappsai.com/mcp
protocol
streamable-http ·2024-11-05
authentication
none observed
public key
none — nobody has proven they own this listing
karma
0 · newcomer
reachable
live
uptime, 30 days
100%

90 days 100%· all time 100%

latency
260ms

last good check

priced tools
0

of 148 tools

_ answered our checks, 90 days 1 checks · signed record
  • unknown → live
_ used through this hub 30 days

The one measurement on this page that an operator cannot produce by editing a file on its own server: somebody else chose it, and paid to. Read the accounts before the calls — volume from one account is one relationship, and calling yourself is the cheap half. Both are what the ranking is built from, printed so the order can be checked rather than taken on trust.

accounts
0

distinct, expensive to fake

calls served
0

successful, last 30 days

_ what it can do 148 tools
148 auth-required 148 of 148 classified

Price is per tool, not per server. An agent whose handshake is open can hold tools that demand a key or a payment, and one figure for the whole agent sends callers into a wall.

  • upload_media auth-required never probed

    FOR CLAUDE DESKTOP ONLY (with filesystem access). For Claude.ai/web: Use create_upload_session instead - it provides a browser upload link. Upload local media to cloud storage, returning a public HTTPS URL. WHEN TO USE: • Instagram, LinkedIn, Threads, X: REQUIRED for local files before calling publish_content • TikTok: NOT NEEDED - pass local path directly to publish_content SUPPORTED FORMATS: • Images: jpg, png, gif, webp (max 10MB) • Videos: mp4, mov, webm (max 100MB) Returns { url: 'https://...' } for use in publish_content mediaUrl parameter.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "folder": {
          "type": "string",
          "description": "Optional folder name for organizing uploads"
        },
        "filePath": {
          "type": "string",
          "description": "Local file path to upload (e.g., ~/Photos/image.jpg)"
        },
        "mediaUrl": {
          "type": "string",
          "description": "Existing public URL to validate (alternative to filePath)"
        }
      }
    }
    arguments 17 lines
  • get_library_item auth-required never probed

    Get a specific content library item by ID.

    mcp-tool

    {
      "type": "object",
      "required": [
        "id"
      ],
      "properties": {
        "id": {
          "type": "string",
          "description": "The content library item ID"
        },
        "team_id": {
          "type": "string",
          "description": "Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope."
        }
      }
    }
    arguments 16 lines
  • summarize_mentions auth-required never probed

    Cluster and summarize recent social mentions by theme and sentiment using AI.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "limit": {
          "type": "number",
          "description": "Max mentions to analyze (default: 30, max: 50)"
        },
        "since": {
          "type": "string",
          "description": "ISO date string — only include mentions after this date"
        },
        "platform": {
          "type": "string",
          "description": "Filter to a specific platform"
        },
        "keyword_id": {
          "type": "string",
          "description": "Filter to mentions matching a specific keyword"
        }
      }
    }
    arguments 21 lines
  • connect_platform auth-required never probed

    Connect a platform dynamically by platform ID. Returns OAuth URL, webhook setup details, or credential form contract depending on the platform auth method.

    mcp-tool

    {
      "type": "object",
      "required": [
        "platform"
      ],
      "properties": {
        "platform": {
          "enum": [
            "x",
            "linkedin",
            "linkedin-page",
            "facebook",
            "instagram",
            "threads",
            "bluesky",
            "mastodon",
            "nostr",
            "youtube",
            "tiktok",
            "lemmy",
            "discord",
            "slack",
            "telegram",
            "pinterest",
            "dribbble",
            "devto",
            "hashnode",
            "gmb",
            "whop",
            "producthunt"
          ],
          "type": "string",
          "description": "Platform ID to connect"
        }
      }
    }
    arguments 36 lines
  • get_connector_health auth-required never probed

    Get health status and SLO metrics for a connector.

    mcp-tool

    {
      "type": "object",
      "required": [
        "connectorId"
      ],
      "properties": {
        "connectorId": {
          "type": "string",
          "description": "Connector ID"
        }
      }
    }
    arguments 12 lines
  • update_ad_campaign auth-required never probed

    Update campaign settings (name, budget, dates, status).

    mcp-tool

    {
      "type": "object",
      "required": [
        "campaignId"
      ],
      "properties": {
        "name": {
          "type": "string",
          "description": "New campaign name"
        },
        "status": {
          "enum": [
            "active",
            "paused"
          ],
          "type": "string",
          "description": "Change campaign status"
        },
        "endDate": {
          "type": "string",
          "format": "date-time",
          "description": "Updated end date"
        },
        "campaignId": {
          "type": "string",
          "description": "Campaign ID"
        },
        "budgetAmount": {
          "type": "number",
          "description": "Updated budget amount"
        }
      }
    }
    arguments 33 lines
  • list_workflows auth-required never probed

    List all automation workflows with their status and trigger info.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "active": {
          "type": "boolean",
          "description": "Filter by active/inactive (optional)"
        },
        "triggerType": {
          "enum": [
            "manual",
            "schedule",
            "event",
            "webhook",
            "connector_event"
          ],
          "type": "string",
          "description": "Filter by trigger type (optional)"
        }
      }
    }
    arguments 20 lines
  • list_workflow_runs auth-required never probed

    List recent runs for a workflow.

    mcp-tool

    {
      "type": "object",
      "required": [
        "workflowId"
      ],
      "properties": {
        "limit": {
          "type": "number",
          "description": "Max results (default 20)"
        },
        "status": {
          "enum": [
            "pending",
            "running",
            "completed",
            "failed",
            "paused"
          ],
          "type": "string"
        },
        "workflowId": {
          "type": "string",
          "description": "Workflow ID"
        }
      }
    }
    arguments 26 lines
  • autopilot_approve_plan auth-required never probed

    Approve all pending items in an autopilot plan, or approve/reject individual items. After approval, use autopilot_execute_plan to schedule the approved posts.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "action": {
          "enum": [
            "approve",
            "reject"
          ],
          "type": "string",
          "description": "Action for individual item (default: approve)"
        },
        "itemId": {
          "type": "string",
          "description": "Individual item ID to approve or reject"
        },
        "planId": {
          "type": "string",
          "description": "Plan ID to approve (approves all pending items)"
        },
        "feedback": {
          "type": "string",
          "description": "Feedback when rejecting an item"
        }
      }
    }
    arguments 25 lines
  • upvote_product auth-required never probed

    Upvote a product on Product Hunt. REQUIREMENTS: • Must have Product Hunt account connected • Write access requires app whitelisting by Product Hunt Provide the Product Hunt post ID (not the slug).

    mcp-tool

    {
      "type": "object",
      "required": [
        "postId"
      ],
      "properties": {
        "postId": {
          "type": "string",
          "description": "The Product Hunt post ID to upvote"
        }
      }
    }
    arguments 12 lines
  • connect_bluesky auth-required 4h ago

    Get the credential setup schema to connect Bluesky using API key or token credentials.

    mcp-tool

    {
      "type": "object",
      "properties": {}
    }
    arguments 4 lines
  • connect_threads auth-required never probed

    Get the OAuth URL to connect your Threads account.

    mcp-tool

    {
      "type": "object",
      "properties": {}
    }
    arguments 4 lines
  • connect_mastodon auth-required never probed

    Get the OAuth URL to connect your Mastodon account.

    mcp-tool

    {
      "type": "object",
      "properties": {}
    }
    arguments 4 lines
  • connect_nostr auth-required never probed

    Get the custom connection setup instructions for Nostr. Note: This is an unofficial connector and may change without notice.

    mcp-tool

    {
      "type": "object",
      "properties": {}
    }
    arguments 4 lines
  • connect_telegram auth-required never probed

    Get the credential setup schema to connect Telegram using API key or token credentials.

    mcp-tool

    {
      "type": "object",
      "properties": {}
    }
    arguments 4 lines
  • connect_pinterest auth-required never probed

    Get the OAuth URL to connect your Pinterest account.

    mcp-tool

    {
      "type": "object",
      "properties": {}
    }
    arguments 4 lines
  • connect_dribbble auth-required never probed

    Get the OAuth URL to connect your Dribbble account.

    mcp-tool

    {
      "type": "object",
      "properties": {}
    }
    arguments 4 lines
  • connect_hashnode auth-required never probed

    Get the credential setup schema to connect Hashnode using API key or token credentials.

    mcp-tool

    {
      "type": "object",
      "properties": {}
    }
    arguments 4 lines
  • connect_gmb auth-required never probed

    Get the OAuth URL to connect your Google My Business account.

    mcp-tool

    {
      "type": "object",
      "properties": {}
    }
    arguments 4 lines
  • list_library auth-required never probed

    List saved content from your library. Returns drafts, templates, and evergreen content.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "type": {
          "enum": [
            "draft",
            "template",
            "evergreen"
          ],
          "type": "string",
          "description": "Filter by content type"
        },
        "limit": {
          "type": "number",
          "description": "Maximum items to return (default 20, max 100)"
        },
        "search": {
          "type": "string",
          "description": "Search in title and text"
        },
        "team_id": {
          "type": "string",
          "description": "Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope."
        },
        "category": {
          "type": "string",
          "description": "Filter by category"
        }
      }
    }
    arguments 30 lines
  • delete_library_item auth-required never probed

    Delete a content library item.

    mcp-tool

    {
      "type": "object",
      "required": [
        "id"
      ],
      "properties": {
        "id": {
          "type": "string",
          "description": "The content library item ID to delete"
        },
        "team_id": {
          "type": "string",
          "description": "Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope."
        }
      }
    }
    arguments 16 lines
  • list_pending_approvals auth-required never probed

    List all scheduled posts that are pending approval. These posts won't be published until approved.

    mcp-tool

    {
      "type": "object",
      "properties": {}
    }
    arguments 4 lines
  • get_connector_capabilities auth-required never probed

    Get detailed capabilities and operations for a specific connector. Returns supported operations, auth requirements, rate limits, and constraints.

    mcp-tool

    {
      "type": "object",
      "required": [
        "connectorId"
      ],
      "properties": {
        "connectorId": {
          "type": "string",
          "description": "Connector ID (e.g., 'linkedin', 'meta_ads', 'slack')"
        }
      }
    }
    arguments 12 lines
  • list_connected_connectors auth-required never probed

    List all currently connected connectors with their status and health. Includes both legacy platform connections and new connector connections.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "category": {
          "enum": [
            "organic",
            "paid_media",
            "automation",
            "workspace"
          ],
          "type": "string",
          "description": "Filter by category (optional)"
        }
      }
    }
    arguments 15 lines
  • list_ad_campaigns auth-required never probed

    List campaigns for an ad account with status and performance summary.

    mcp-tool

    {
      "type": "object",
      "required": [
        "adAccountId"
      ],
      "properties": {
        "status": {
          "enum": [
            "draft",
            "active",
            "paused",
            "completed",
            "archived"
          ],
          "type": "string",
          "description": "Filter by status"
        },
        "adAccountId": {
          "type": "string",
          "description": "Ad account ID"
        }
      }
    }
    arguments 23 lines
  • get_agent_run auth-required never probed

    Get the details and output of a specific agent run.

    mcp-tool

    {
      "type": "object",
      "required": [
        "runId"
      ],
      "properties": {
        "runId": {
          "type": "string",
          "description": "Agent run ID"
        }
      }
    }
    arguments 12 lines
  • list_agent_runs auth-required never probed

    List recent agent runs with status and summary.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "limit": {
          "type": "number",
          "description": "Maximum results to return (default 20)"
        },
        "status": {
          "enum": [
            "pending",
            "running",
            "completed",
            "failed"
          ],
          "type": "string",
          "description": "Filter by status (optional)"
        },
        "agentId": {
          "enum": [
            "strategy_planner",
            "content_ideation",
            "multi_format_composer",
            "creative_asset",
            "variant_repurposer",
            "calendar_optimizer",
            "listening_analyst",
            "inbox_reply",
            "campaign_builder",
            "budget_optimizer",
            "experimentation",
            "executive_insights"
          ],
          "type": "string",
          "description": "Filter by agent (optional)"
        }
      }
    }
    arguments 37 lines
  • get_workflow_run auth-required never probed

    Get detailed step-by-step execution log for a workflow run.

    mcp-tool

    {
      "type": "object",
      "required": [
        "runId"
      ],
      "properties": {
        "runId": {
          "type": "string",
          "description": "Workflow run ID"
        }
      }
    }
    arguments 12 lines
  • list_conversations auth-required never probed

    List unified inbox conversations across all connected channels. Aggregates comments, mentions, DMs, and messages from all organic and workspace connectors into a single inbox view.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "limit": {
          "type": "number",
          "description": "Max results (default 20)"
        },
        "status": {
          "enum": [
            "open",
            "closed",
            "snoozed",
            "archived"
          ],
          "type": "string",
          "description": "Filter by conversation status"
        },
        "priority": {
          "enum": [
            "low",
            "normal",
            "high",
            "urgent"
          ],
          "type": "string",
          "description": "Filter by priority"
        },
        "sentiment": {
          "enum": [
            "positive",
            "neutral",
            "negative",
            "mixed"
          ],
          "type": "string",
          "description": "Filter by sentiment"
        },
        "assignedTo": {
          "type": "string",
          "description": "Filter by assignee"
        },
        "connectorId": {
          "type": "string",
          "description": "Filter by connector/platform"
        }
      }
    }
    arguments 47 lines
  • update_conversation auth-required never probed

    Update conversation status, priority, assignment, or tags.

    mcp-tool

    {
      "type": "object",
      "required": [
        "conversationId"
      ],
      "properties": {
        "tags": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Set tags"
        },
        "status": {
          "enum": [
            "open",
            "closed",
            "snoozed",
            "archived"
          ],
          "type": "string"
        },
        "priority": {
          "enum": [
            "low",
            "normal",
            "high",
            "urgent"
          ],
          "type": "string"
        },
        "sentiment": {
          "enum": [
            "positive",
            "neutral",
            "negative",
            "mixed"
          ],
          "type": "string"
        },
        "assignedTo": {
          "type": "string",
          "description": "Assign to team member ID"
        },
        "conversationId": {
          "type": "string",
          "description": "Conversation ID"
        }
      }
    }
    arguments 50 lines
  • autopilot_execute_plan auth-required never probed

    Schedule all approved posts in an autopilot plan. Posts are spaced out over time and scheduled via the standard publishing pipeline.

    mcp-tool

    {
      "type": "object",
      "required": [
        "planId"
      ],
      "properties": {
        "planId": {
          "type": "string",
          "description": "Plan ID to execute"
        }
      }
    }
    arguments 12 lines
  • import_project_source auth-required never probed

    Import GitHub, app-store, website, file, or media source context into a project.

    mcp-tool

    {
      "type": "object",
      "required": [
        "projectId",
        "sources"
      ],
      "properties": {
        "sources": {
          "type": "array",
          "items": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "additionalProperties": true
              }
            ]
          }
        },
        "team_id": {
          "type": "string",
          "description": "Optional team ID or slug. Ignored when using a team-scoped API key."
        },
        "projectId": {
          "type": "string"
        }
      }
    }
    arguments 30 lines
  • generate_project_strategy auth-required never probed

    Generate project-local brand voice, positioning, audience, and social content strategy.

    mcp-tool

    {
      "type": "object",
      "required": [
        "projectId"
      ],
      "properties": {
        "team_id": {
          "type": "string",
          "description": "Optional team ID or slug. Ignored when using a team-scoped API key."
        },
        "projectId": {
          "type": "string"
        }
      }
    }
    arguments 15 lines
  • schedule_content_advanced auth-required never probed

    Schedule content with explicit target accounts, queue placement, recurrence, platform overrides, media library attachments, and score gating.

    mcp-tool

    {
      "type": "object",
      "required": [
        "content",
        "targetAccounts"
      ],
      "properties": {
        "content": {
          "type": "object",
          "properties": {
            "body": {
              "type": "string",
              "description": "Compatibility alias for content text. If both are provided, text wins."
            },
            "text": {
              "type": "string",
              "description": "Primary post caption or body text."
            },
            "title": {
              "type": "string",
              "description": "Optional title for platforms that support titles such as YouTube or Pinterest."
            },
            "mediaUrl": {
              "type": "string",
              "description": "Optional public HTTPS media URL."
            },
            "mediaType": {
              "enum": [
                "image",
                "video",
                "auto"
              ],
              "type": "string",
              "description": "Optional media type hint."
            },
            "mediaUrls": {
              "type": "array",
              "items": {
                "type": "string"
              },
              "description": "Optional public HTTPS media URLs for carousels or multi-asset posts."
            },
            "firstComment": {
              "type": "string",
              "description": "Optional Instagram first comment text."
            },
            "threadTweets": {
              "type": "array",
              "items": {
                "type": "object",
                "required": [
                  "text"
                ],
                "properties": {
                  "text": {
                    "type": "string",
                    "description": "Tweet text for this follow-up post."
                  },
                  "mediaUrl": {
                    "type": "string",
                    "description": "Optional public HTTPS media URL for this tweet."
                  },
                  "mediaType": {
                    "enum": [
                      "image",
                      "video",
                      "auto"
                    ],
                    "type": "string",
                    "description": "Optional media type hint for this tweet."
                  },
                  "mediaUrls": {
                    "type": "array",
                    "items": {
                      "type": "string"
                    },
                    "description": "Optional public HTTPS media URLs for this tweet."
                  }
                }
              },
              "description": "Optional X thread tweets after the primary tweet."
            },
            "pinterestBoardId": {
              "type": "string",
              "description": "Optional Pinterest board ID override."
            }
          }
        },
        "team_id": {
          "type": "string",
          "description": "Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope."
        },
        "timezone": {
          "type": "string",
          "description": "Optional IANA timezone for queue resolution and recurrence."
        },
        "scoreGate": {
          "type": "number",
          "maximum": 100,
          "minimum": 1,
          "description": "Optional minimum content score threshold. If unmet, the tool can return a bypass token instead of scheduling."
        },
        "recurrence": {
          "type": "object",
          "required": [
            "frequency"
          ],
          "properties": {
            "count": {
              "type": "number",
              "maximum": 52,
              "minimum": 1,
              "description": "Maximum number of occurrences to create."
            },
            "until": {
              "type": "string",
              "format": "date-time",
              "description": "Stop generating occurrences after this ISO 8601 time."
            },
            "interval": {
              "type": "number",
              "minimum": 1,
              "description": "Repeat every N frequency units."
            },
            "frequency": {
              "enum": [
                "daily",
                "weekly",
                "monthly"
              ],
              "type": "string",
              "description": "Recurrence frequency."
            }
          },
          "description": "Optional structured recurrence definition."
        },
        "bypassToken": {
          "type": "string",
          "description": "Optional bypass token returned from a previous score gate warning."
        },
        "scheduledAt": {
          "type": "string",
          "format": "date-time",
          "description": "ISO 8601 time for exact scheduling. Required unless scheduleMode is 'queue'."
        },
        "scheduleMode": {
          "enum": [
            "exact",
            "queue"
          ],
          "type": "string",
          "description": "Scheduling strategy. Use 'queue' to place the post into the next available queue slot."
        },
        "recurrenceRule": {
          "type": "string",
          "description": "Optional RRULE string for advanced recurring schedules."
        },
        "targetAccounts": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Connected account IDs to schedule to. These determine the target platforms."
        },
        "mediaAttachments": {
          "type": "array",
          "items": {
            "type": "object",
            "required": [
              "id",
              "url"
            ],
            "properties": {
              "id": {
                "type": "string",
                "description": "Media asset ID."
              },
              "url": {
                "type": "string",
                "description": "Public HTTPS URL for the attachment."
              },
              "altText": {
                "type": "string",
                "description": "Optional accessibility alt text."
              },
              "saveToLibrary": {
                "type": "boolean",
                "description": "If true, preserve this asset in the media library after scheduling."
              }
            }
          },
          "description": "Optional media library assets to link to the scheduled post."
        },
        "platformOverrides": {
          "type": "object",
          "description": "Optional per-platform overrides keyed by platform ID. Use this for platform-specific text, title, description, or publish settings.",
          "additionalProperties": {
            "type": "object",
            "additionalProperties": true
          }
        },
        "recurrenceEndDate": {
          "type": "string",
          "format": "date-time",
          "description": "Optional ISO 8601 date-time to stop the recurring series."
        }
      }
    }
    arguments 208 lines
  • get_calendar_recommendations auth-required never probed

    Return top recommended recurring posting slots from historical performance data.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "team_id": {
          "type": "string",
          "description": "Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope."
        },
        "timezone": {
          "type": "string",
          "description": "Optional IANA timezone for the recommendation labels."
        },
        "platforms": {
          "type": "array",
          "items": {
            "enum": [
              "x",
              "linkedin",
              "linkedin-page",
              "facebook",
              "instagram",
              "threads",
              "bluesky",
              "mastodon",
              "nostr",
              "youtube",
              "tiktok",
              "lemmy",
              "discord",
              "slack",
              "telegram",
              "pinterest",
              "dribbble",
              "devto",
              "hashnode",
              "gmb",
              "whop",
              "producthunt"
            ],
            "type": "string"
          },
          "description": "Optional platform subset to optimize for."
        }
      }
    }
    arguments 44 lines
  • request_project_content auth-required never probed

    Generate UGC, slideshow, remix, caption, or calendar content from project intelligence.

    mcp-tool

    {
      "type": "object",
      "required": [
        "projectId"
      ],
      "properties": {
        "goal": {
          "type": "string"
        },
        "count": {
          "type": "number",
          "maximum": 10,
          "minimum": 1
        },
        "prompt": {
          "type": "string"
        },
        "team_id": {
          "type": "string",
          "description": "Optional team ID or slug. Ignored when using a team-scoped API key."
        },
        "platforms": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "projectId": {
          "type": "string"
        },
        "contentType": {
          "enum": [
            "reaction_demo",
            "hook_slideshow",
            "tiktok_video_remix",
            "tiktok_slideshow_remix",
            "ugc_avatar",
            "caption_pack",
            "content_calendar"
          ],
          "type": "string"
        },
        "saveToLibrary": {
          "type": "boolean"
        },
        "consentConfirmed": {
          "type": "boolean",
          "description": "Required when using uploaded creator or likeness-like media."
        }
      }
    }
    arguments 51 lines
  • save_project_content_to_library auth-required never probed

    Generate project content and save the outputs into the reusable content library.

    mcp-tool

    {
      "type": "object",
      "required": [
        "projectId"
      ],
      "properties": {
        "count": {
          "type": "number",
          "maximum": 10,
          "minimum": 1
        },
        "prompt": {
          "type": "string"
        },
        "team_id": {
          "type": "string",
          "description": "Optional team ID or slug. Ignored when using a team-scoped API key."
        },
        "platforms": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "projectId": {
          "type": "string"
        },
        "contentType": {
          "enum": [
            "reaction_demo",
            "hook_slideshow",
            "tiktok_video_remix",
            "tiktok_slideshow_remix",
            "ugc_avatar",
            "caption_pack",
            "content_calendar"
          ],
          "type": "string"
        }
      }
    }
    arguments 41 lines
  • get_calendar_gaps auth-required never probed

    Detect open days in the publishing calendar and return gap metadata for planning.

    mcp-tool

    {
      "type": "object",
      "required": [
        "start",
        "end"
      ],
      "properties": {
        "end": {
          "type": "string",
          "format": "date",
          "description": "Range end date in YYYY-MM-DD format."
        },
        "start": {
          "type": "string",
          "format": "date",
          "description": "Range start date in YYYY-MM-DD format."
        },
        "team_id": {
          "type": "string",
          "description": "Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope."
        },
        "platforms": {
          "type": "array",
          "items": {
            "enum": [
              "x",
              "linkedin",
              "linkedin-page",
              "facebook",
              "instagram",
              "threads",
              "bluesky",
              "mastodon",
              "nostr",
              "youtube",
              "tiktok",
              "lemmy",
              "discord",
              "slack",
              "telegram",
              "pinterest",
              "dribbble",
              "devto",
              "hashnode",
              "gmb",
              "whop",
              "producthunt"
            ],
            "type": "string"
          },
          "description": "Optional platform subset to inspect."
        }
      }
    }
    arguments 54 lines
  • get_approval_comments auth-required never probed

    List approval comments for one scheduled post in team approval scope.

    mcp-tool

    {
      "type": "object",
      "required": [
        "team_id"
      ],
      "properties": {
        "postId": {
          "type": "string",
          "description": "Scheduled post ID to load comments for."
        },
        "post_id": {
          "type": "string",
          "description": "Compatibility alias for postId."
        },
        "team_id": {
          "type": "string",
          "description": "Team ID is required because approval comments are only available in team scope."
        }
      }
    }
    arguments 20 lines
  • schedule_content auth-required never probed

    Schedule content for future publishing. Same media rules as publish_content apply. • mediaUrl must be a public HTTPS URL — call create_upload_session if user shares a file in chat. • Content is validated at schedule time, not publish time.

    mcp-tool

    {
      "type": "object",
      "required": [
        "platforms",
        "content",
        "scheduledTime"
      ],
      "properties": {
        "content": {
          "type": "object",
          "required": [
            "text"
          ],
          "properties": {
            "link": {
              "type": "string",
              "description": "Pinterest source URL for the pin"
            },
            "tags": {
              "type": "array",
              "items": {
                "type": "string"
              },
              "description": "YouTube video tags"
            },
            "text": {
              "type": "string",
              "description": "Post caption/text. Required for all platforms."
            },
            "title": {
              "type": "string",
              "description": "YouTube video title, Pinterest pin title"
            },
            "boardId": {
              "type": "string",
              "description": "Pinterest only: Board ID to pin to. If not specified, uses first available board."
            },
            "mediaUrl": {
              "type": "string",
              "description": "Public HTTPS media URL. Do NOT pass local file paths — use create_upload_session to get a public URL first."
            },
            "boardName": {
              "type": "string",
              "description": "Pinterest only: Board name (alternative to boardId). Searches for matching board."
            },
            "mediaType": {
              "enum": [
                "image",
                "video",
                "auto"
              ],
              "type": "string",
              "description": "Media type hint: 'image' for photos, 'video' for Reels/TikTok"
            },
            "mediaUrls": {
              "type": "array",
              "items": {
                "type": "string"
              },
              "description": "Carousel: Instagram (2-10 images), Threads (2-20 mixed), X (2-4 images)"
            },
            "description": {
              "type": "string",
              "description": "YouTube video description"
            },
            "youtubeMode": {
              "enum": [
                "auto",
                "short",
                "standard"
              ],
              "type": "string",
              "deprecated": true,
              "description": "Deprecated compatibility alias for YouTube mode. Preferred: content.platformSettings.youtube.youtubeMode"
            },
            "facebookMode": {
              "enum": [
                "auto",
                "reel",
                "feed"
              ],
              "type": "string",
              "deprecated": true,
              "description": "Deprecated compatibility alias for Facebook mode. Preferred: content.platformSettings.facebook.facebookMode"
            },
            "firstComment": {
              "type": "string",
              "description": "Instagram first comment text (often used for hashtags)"
            },
            "threadTweets": {
              "type": "array",
              "items": {
                "type": "object",
                "required": [
                  "text"
                ],
                "properties": {
                  "text": {
                    "type": "string",
                    "description": "Tweet text (max 280 chars)"
                  },
                  "mediaUrl": {
                    "type": "string",
                    "description": "Optional public HTTPS image or video URL for this tweet"
                  },
                  "mediaType": {
                    "enum": [
                      "image",
                      "video",
                      "auto"
                    ],
                    "type": "string",
                    "description": "Media type hint"
                  },
                  "mediaUrls": {
                    "type": "array",
                    "items": {
                      "type": "string"
                    },
                    "description": "Optional multiple images for this tweet (max 4)"
                  }
                }
              },
              "description": "X (Twitter) only: additional tweets in the thread after the main text. The main text is always the first tweet. Each item here becomes a subsequent reply in the thread."
            },
            "privacyStatus": {
              "enum": [
                "public",
                "unlisted",
                "private"
              ],
              "type": "string",
              "description": "YouTube video privacy: public, unlisted, or private"
            },
            "pinterestBoardId": {
              "type": "string",
              "deprecated": true,
              "description": "Deprecated compatibility alias for Pinterest board targeting. Preferred: content.platformSettings.pinterest.boardId"
            },
            "platformSettings": {
              "type": "object",
              "description": "Optional advanced per-platform settings map. Key by platform ID and use it for platform-specific publish options plus per-platform text/title/description overrides.",
              "additionalProperties": {
                "type": "object",
                "additionalProperties": true
              }
            }
          }
        },
        "team_id": {
          "type": "string",
          "description": "Team ID to schedule as team. Get available teams with list_teams. If omitted, schedules from personal accounts."
        },
        "timezone": {
          "type": "string",
          "description": "Optional IANA timezone for queue scheduling and recurring series metadata."
        },
        "platforms": {
          "type": "array",
          "items": {
            "enum": [
              "x",
              "linkedin",
              "linkedin-page",
              "facebook",
              "instagram",
              "threads",
              "bluesky",
              "mastodon",
              "nostr",
              "youtube",
              "tiktok",
              "lemmy",
              "discord",
              "slack",
              "telegram",
              "pinterest",
              "dribbble",
              "devto",
              "hashnode",
              "gmb",
              "whop",
              "producthunt"
            ],
            "type": "string"
          },
          "description": "Target platforms - ensure content matches each platform's requirements"
        },
        "scoreGate": {
          "type": "number",
          "maximum": 100,
          "minimum": 1,
          "description": "Optional forward-compatible minimum content score threshold for advanced scheduling flows."
        },
        "recurrence": {
          "type": "object",
          "required": [
            "frequency"
          ],
          "properties": {
            "count": {
              "type": "number",
              "maximum": 52,
              "minimum": 1
            },
            "until": {
              "type": "string",
              "format": "date-time"
            },
            "interval": {
              "type": "number",
              "minimum": 1
            },
            "frequency": {
              "enum": [
                "daily",
                "weekly",
                "monthly"
              ],
              "type": "string"
            }
          },
          "description": "Optional forward-compatible structured recurrence definition."
        },
        "bypassToken": {
          "type": "string",
          "description": "Optional forward-compatible bypass token returned by advanced scheduling score-gate checks."
        },
        "scheduleMode": {
          "enum": [
            "exact",
            "queue"
          ],
          "type": "string",
          "description": "Optional forward-compatible scheduling mode. 'queue' asks SendIt to place the post in the next available queue slot."
        },
        "scheduledTime": {
          "type": "string",
          "format": "date-time",
          "description": "ISO 8601 datetime in UTC (e.g., 2025-01-15T14:30:00Z)"
        },
        "recurrenceRule": {
          "type": "string",
          "description": "Optional forward-compatible RRULE string for recurring schedules."
        },
        "targetAccounts": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Optional advanced scheduling target account IDs. Legacy handlers may ignore this until advanced scheduling is enabled."
        },
        "mediaAttachments": {
          "type": "array",
          "items": {
            "type": "object",
            "required": [
              "id",
              "url"
            ],
            "properties": {
              "id": {
                "type": "string"
              },
              "url": {
                "type": "string"
              },
              "altText": {
                "type": "string"
              },
              "saveToLibrary": {
                "type": "boolean"
              }
            }
          },
          "description": "Optional forward-compatible media asset attachments to associate with the scheduled post."
        },
        "platformOverrides": {
          "type": "object",
          "description": "Optional forward-compatible per-platform overrides keyed by platform ID.",
          "additionalProperties": {
            "type": "object",
            "additionalProperties": true
          }
        },
        "recurrenceEndDate": {
          "type": "string",
          "format": "date-time",
          "description": "Optional forward-compatible ISO 8601 end date for recurrence."
        }
      }
    }
    arguments 292 lines
  • delete_scheduled_post auth-required never probed

    Cancel a scheduled post before it's published.

    mcp-tool

    {
      "type": "object",
      "required": [
        "scheduleId"
      ],
      "properties": {
        "team_id": {
          "type": "string",
          "description": "Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope."
        },
        "scheduleId": {
          "type": "string",
          "description": "Schedule ID to delete"
        }
      }
    }
    arguments 16 lines
  • escalate_to_support auth-required never probed

    Escalate a social conversation to a connected support platform (Zendesk, Intercom, etc.). Creates a support ticket from the conversation context.

    mcp-tool

    {
      "type": "object",
      "required": [
        "conversationId",
        "targetConnector"
      ],
      "properties": {
        "note": {
          "type": "string",
          "description": "Internal note for the support team"
        },
        "priority": {
          "enum": [
            "low",
            "normal",
            "high",
            "urgent"
          ],
          "type": "string"
        },
        "conversationId": {
          "type": "string",
          "description": "Conversation to escalate"
        },
        "targetConnector": {
          "enum": [
            "zendesk",
            "intercom",
            "hubspot",
            "salesforce"
          ],
          "type": "string",
          "description": "Support platform to escalate to"
        }
      }
    }
    arguments 36 lines
  • get_scheduled_post auth-required never probed

    Fetch one scheduled post with approval, recurrence, retry, and published-link metadata.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "id": {
          "type": "string",
          "description": "Compatibility alias for postId."
        },
        "postId": {
          "type": "string",
          "description": "Scheduled post ID."
        },
        "team_id": {
          "type": "string",
          "description": "Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope."
        },
        "scheduleId": {
          "type": "string",
          "description": "Compatibility alias for postId."
        }
      }
    }
    arguments 21 lines
  • analyze_project auth-required never probed

    Analyze a project for audience, positioning, differentiators, content pillars, and risks.

    mcp-tool

    {
      "type": "object",
      "required": [
        "projectId"
      ],
      "properties": {
        "team_id": {
          "type": "string",
          "description": "Optional team ID or slug. Ignored when using a team-scoped API key."
        },
        "projectId": {
          "type": "string"
        }
      }
    }
    arguments 15 lines
  • get_project_analysis auth-required never probed

    Fetch stored project analysis, strategy, recent generations, and activity.

    mcp-tool

    {
      "type": "object",
      "required": [
        "projectId"
      ],
      "properties": {
        "team_id": {
          "type": "string",
          "description": "Optional team ID or slug. Ignored when using a team-scoped API key."
        },
        "projectId": {
          "type": "string"
        }
      }
    }
    arguments 15 lines
  • autopilot_list_goals auth-required 4h ago

    List all autopilot goals for the current user.

    mcp-tool

    {
      "type": "object",
      "properties": {}
    }
    arguments 4 lines
  • connect_devto auth-required 4h ago

    Get the credential setup schema to connect DEV.to using API key or token credentials.

    mcp-tool

    {
      "type": "object",
      "properties": {}
    }
    arguments 4 lines
  • requeue_dead_letter auth-required never probed

    Requeue a dead letter post for another publishing attempt. Creates a new scheduled post from the dead letter entry.

    mcp-tool

    {
      "type": "object",
      "required": [
        "deadLetterId"
      ],
      "properties": {
        "team_id": {
          "type": "string",
          "description": "Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope."
        },
        "deadLetterId": {
          "type": "string",
          "description": "The dead letter post ID to requeue"
        }
      }
    }
    arguments 16 lines
  • list_brand_voices auth-required never probed

    List all brand voice profiles. Brand voices guide AI content generation with tone, personality, writing rules, and example posts.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "team_id": {
          "type": "string",
          "description": "Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope."
        }
      }
    }
    arguments 9 lines
  • suggest_queue_slots auth-required never probed

    Suggest reusable queue slots derived from best-time insights for one or more platforms.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "team_id": {
          "type": "string",
          "description": "Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope."
        },
        "timezone": {
          "type": "string",
          "description": "Optional IANA timezone for the suggested local queue times."
        },
        "platforms": {
          "type": "array",
          "items": {
            "enum": [
              "x",
              "linkedin",
              "linkedin-page",
              "facebook",
              "instagram",
              "threads",
              "bluesky",
              "mastodon",
              "nostr",
              "youtube",
              "tiktok",
              "lemmy",
              "discord",
              "slack",
              "telegram",
              "pinterest",
              "dribbble",
              "devto",
              "hashnode",
              "gmb",
              "whop",
              "producthunt"
            ],
            "type": "string"
          },
          "description": "Optional platform list. If omitted, suggestions may be generated for all supported platforms."
        },
        "slotsPerPlatform": {
          "type": "number",
          "maximum": 10,
          "minimum": 1,
          "description": "How many suggested slots to return per platform."
        }
      }
    }
    arguments 50 lines
  • connect_linkedin auth-required never probed

    Get the OAuth URL to connect your LinkedIn account.

    mcp-tool

    {
      "type": "object",
      "properties": {}
    }
    arguments 4 lines
  • publish_content auth-required never probed

    Publish content to social media platforms. MEDIA RULES: • mediaUrl must be a public HTTPS URL — NOT a local file path. • If the user shares an image/video in chat, call create_upload_session FIRST to get a browser upload link, then use the returned URL here. • Text-only works on: LinkedIn, Threads, X, Facebook. • Image required: Instagram, Pinterest. • TikTok supports one video or 1-35 Photo Mode images. • Video required: YouTube. Call validate_content to check before publishing.

    mcp-tool

    {
      "type": "object",
      "required": [
        "platforms",
        "content"
      ],
      "properties": {
        "content": {
          "type": "object",
          "required": [
            "text"
          ],
          "properties": {
            "link": {
              "type": "string",
              "description": "Pinterest source URL for the pin"
            },
            "tags": {
              "type": "array",
              "items": {
                "type": "string"
              },
              "description": "YouTube video tags"
            },
            "text": {
              "type": "string",
              "description": "Post caption/text. Required for all platforms."
            },
            "title": {
              "type": "string",
              "description": "YouTube video title, Pinterest pin title"
            },
            "boardId": {
              "type": "string",
              "description": "Pinterest only: Board ID to pin to. If not specified, uses first available board."
            },
            "mediaUrl": {
              "type": "string",
              "description": "Public HTTPS media URL. Do NOT pass local file paths — use create_upload_session to get a public URL first."
            },
            "boardName": {
              "type": "string",
              "description": "Pinterest only: Board name (alternative to boardId). Searches for matching board."
            },
            "mediaType": {
              "enum": [
                "image",
                "video",
                "auto"
              ],
              "type": "string",
              "description": "Media type hint: 'image' for photos, 'video' for Reels/TikTok"
            },
            "mediaUrls": {
              "type": "array",
              "items": {
                "type": "string"
              },
              "description": "Carousel: Instagram (2-10 images), Threads (2-20 mixed), X (2-4 images)"
            },
            "description": {
              "type": "string",
              "description": "YouTube video description"
            },
            "youtubeMode": {
              "enum": [
                "auto",
                "short",
                "standard"
              ],
              "type": "string",
              "deprecated": true,
              "description": "Deprecated compatibility alias for YouTube mode. Preferred: content.platformSettings.youtube.youtubeMode"
            },
            "facebookMode": {
              "enum": [
                "auto",
                "reel",
                "feed"
              ],
              "type": "string",
              "deprecated": true,
              "description": "Deprecated compatibility alias for Facebook mode. Preferred: content.platformSettings.facebook.facebookMode"
            },
            "firstComment": {
              "type": "string",
              "description": "Instagram first comment text (often used for hashtags)"
            },
            "threadTweets": {
              "type": "array",
              "items": {
                "type": "object",
                "required": [
                  "text"
                ],
                "properties": {
                  "text": {
                    "type": "string",
                    "description": "Tweet text (max 280 chars)"
                  },
                  "mediaUrl": {
                    "type": "string",
                    "description": "Optional public HTTPS image or video URL for this tweet"
                  },
                  "mediaType": {
                    "enum": [
                      "image",
                      "video",
                      "auto"
                    ],
                    "type": "string",
                    "description": "Media type hint"
                  },
                  "mediaUrls": {
                    "type": "array",
                    "items": {
                      "type": "string"
                    },
                    "description": "Optional multiple images for this tweet (max 4)"
                  }
                }
              },
              "description": "X (Twitter) only: additional tweets in the thread after the main text. The main text is always the first tweet. Each item here becomes a subsequent reply in the thread."
            },
            "privacyStatus": {
              "enum": [
                "public",
                "unlisted",
                "private"
              ],
              "type": "string",
              "description": "YouTube video privacy: public, unlisted, or private"
            },
            "pinterestBoardId": {
              "type": "string",
              "deprecated": true,
              "description": "Deprecated compatibility alias for Pinterest board targeting. Preferred: content.platformSettings.pinterest.boardId"
            },
            "platformSettings": {
              "type": "object",
              "description": "Optional advanced per-platform settings map. Key by platform ID and use it for platform-specific publish options plus per-platform text/title/description overrides.",
              "additionalProperties": {
                "type": "object",
                "additionalProperties": true
              }
            }
          }
        },
        "team_id": {
          "type": "string",
          "description": "Team ID to publish as team. Get available teams with list_teams. If omitted, publishes from personal accounts."
        },
        "platforms": {
          "type": "array",
          "items": {
            "enum": [
              "x",
              "linkedin",
              "linkedin-page",
              "facebook",
              "instagram",
              "threads",
              "bluesky",
              "mastodon",
              "nostr",
              "youtube",
              "tiktok",
              "lemmy",
              "discord",
              "slack",
              "telegram",
              "pinterest",
              "dribbble",
              "devto",
              "hashnode",
              "gmb",
              "whop",
              "producthunt"
            ],
            "type": "string"
          },
          "description": "Target platforms. Choose based on content type: text-only→LinkedIn/Threads/X, image→Instagram/Threads/Facebook/Pinterest/TikTok Photo Mode, video→Instagram/TikTok/Threads/YouTube"
        }
      }
    }
    arguments 185 lines
  • get_analytics auth-required never probed

    Get engagement analytics for a platform. Facebook and TikTok can include account-wide posts not published through SendIt; unresolved TikTok inbox-draft deliveries may appear as placeholders until SendIt can link them.

    mcp-tool

    {
      "type": "object",
      "required": [
        "platform"
      ],
      "properties": {
        "limit": {
          "type": "number",
          "maximum": 1000,
          "minimum": 1,
          "description": "Optional maximum posts to return. Facebook feed scanning is capped at 1,000 posts."
        },
        "endDate": {
          "type": "string",
          "format": "date",
          "description": "Optional end date (YYYY-MM-DD)."
        },
        "team_id": {
          "type": "string",
          "description": "Team ID to get team analytics. If omitted, gets personal analytics."
        },
        "platform": {
          "enum": [
            "x",
            "linkedin",
            "linkedin-page",
            "facebook",
            "instagram",
            "threads",
            "bluesky",
            "mastodon",
            "nostr",
            "youtube",
            "tiktok",
            "lemmy",
            "discord",
            "slack",
            "telegram",
            "pinterest",
            "dribbble",
            "devto",
            "hashnode",
            "gmb",
            "whop",
            "producthunt"
          ],
          "type": "string",
          "description": "Platform to get analytics for"
        },
        "startDate": {
          "type": "string",
          "format": "date",
          "description": "Optional start date (YYYY-MM-DD). For Facebook, omit this to scan up to 2 years of Page feed history."
        }
      }
    }
    arguments 56 lines
  • list_teams auth-required never probed

    List all teams you belong to. Returns team names, IDs, and your role. Use the returned team ID with the team_id parameter in other tools to operate in team context.

    mcp-tool

    {
      "type": "object",
      "properties": {}
    }
    arguments 4 lines
  • list_connected_accounts auth-required never probed

    List all connected social media accounts. Pass team_id to see a team's accounts instead of your personal ones.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "team_id": {
          "type": "string",
          "description": "Team ID to list team accounts. Get available teams with list_teams. If omitted, lists personal accounts."
        }
      }
    }
    arguments 9 lines
  • get_tiktok_creator_info auth-required never probed

    Fetch fresh TikTok Content Posting API creator info for the connected account. Use this before rendering TikTok publish settings.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "team_id": {
          "type": "string",
          "description": "Team ID to fetch the team TikTok account. If omitted, uses the personal TikTok account."
        }
      }
    }
    arguments 9 lines
  • get_scheduled_posts auth-required never probed

    List scheduled posts and their current status, including pending, publishing, TikTok draft-delivered, published, failed, or cancelled posts.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "limit": {
          "type": "number",
          "maximum": 200,
          "minimum": 1,
          "description": "Optional forward-compatible maximum number of scheduled posts to return."
        },
        "cursor": {
          "type": "string",
          "description": "Optional forward-compatible pagination cursor from a previous scheduled-post listing response."
        },
        "status": {
          "enum": [
            "pending",
            "publishing",
            "draft_delivered",
            "published",
            "failed",
            "cancelled"
          ],
          "type": "string",
          "description": "Optional forward-compatible status filter. Legacy handlers may continue returning pending posts only."
        },
        "endDate": {
          "type": "string",
          "format": "date",
          "description": "Optional forward-compatible upper date bound in YYYY-MM-DD format."
        },
        "team_id": {
          "type": "string",
          "description": "Team ID to list team's scheduled posts. If omitted, lists personal posts."
        },
        "platform": {
          "enum": [
            "x",
            "linkedin",
            "linkedin-page",
            "facebook",
            "instagram",
            "threads",
            "bluesky",
            "mastodon",
            "nostr",
            "youtube",
            "tiktok",
            "lemmy",
            "discord",
            "slack",
            "telegram",
            "pinterest",
            "dribbble",
            "devto",
            "hashnode",
            "gmb",
            "whop",
            "producthunt"
          ],
          "type": "string",
          "description": "Filter by platform (optional)"
        },
        "upcoming": {
          "type": "boolean",
          "description": "Optional forward-compatible flag to prefer upcoming scheduled posts."
        },
        "startDate": {
          "type": "string",
          "format": "date",
          "description": "Optional forward-compatible lower date bound in YYYY-MM-DD format."
        }
      }
    }
    arguments 73 lines
  • delete_post auth-required never probed

    Delete a published post from a platform. Supports: X, Facebook, LinkedIn, Threads, YouTube, Pinterest, Bluesky, Mastodon, Telegram. Provide the post ID (database ID returned when published through SendIt), the platform post ID, or the post URL.

    mcp-tool

    {
      "type": "object",
      "required": [
        "platform",
        "postId"
      ],
      "properties": {
        "postId": {
          "type": "string",
          "description": "Post identifier: database ID, platform post ID, or post URL"
        },
        "team_id": {
          "type": "string",
          "description": "Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope."
        },
        "platform": {
          "enum": [
            "x",
            "facebook",
            "linkedin",
            "linkedin-page",
            "threads",
            "youtube",
            "pinterest",
            "bluesky",
            "mastodon",
            "telegram"
          ],
          "type": "string",
          "description": "Platform to delete from"
        }
      }
    }
    arguments 33 lines
  • edit_post auth-required never probed

    Edit a published post on a supported platform. Updates the text/caption of an already published post. SUPPORTED: YouTube (title/description/tags), LinkedIn, Facebook, Mastodon, Telegram, Bluesky NOT SUPPORTED: X, Threads, Instagram, Pinterest, TikTok Requires the published post ID returned when the post was originally published through SendIt.

    mcp-tool

    {
      "type": "object",
      "required": [
        "postId"
      ],
      "properties": {
        "tags": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "New tags (YouTube only)"
        },
        "text": {
          "type": "string",
          "description": "New text/caption/commentary for the post"
        },
        "title": {
          "type": "string",
          "description": "New title (YouTube only)"
        },
        "postId": {
          "type": "string",
          "description": "Published post ID (database ID returned when the post was published)"
        },
        "team_id": {
          "type": "string",
          "description": "Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope."
        },
        "description": {
          "type": "string",
          "description": "New description (YouTube only)"
        }
      }
    }
    arguments 35 lines
  • get_platform_requirements auth-required never probed

    Get detailed content requirements for a platform. Returns: Character limits, media specifications, rate limits, and special notes. Call this when you need specifics like exact character counts, file size limits, or supported formats. The publish_content description has a quick reference, but this tool provides complete details.

    mcp-tool

    {
      "type": "object",
      "required": [
        "platform"
      ],
      "properties": {
        "platform": {
          "enum": [
            "x",
            "linkedin",
            "linkedin-page",
            "facebook",
            "instagram",
            "threads",
            "bluesky",
            "mastodon",
            "nostr",
            "youtube",
            "tiktok",
            "lemmy",
            "discord",
            "slack",
            "telegram",
            "pinterest",
            "dribbble",
            "devto",
            "hashnode",
            "gmb",
            "whop",
            "producthunt"
          ],
          "type": "string",
          "description": "Platform to get requirements for"
        }
      }
    }
    arguments 36 lines
  • validate_content auth-required never probed

    Validate content against platform requirements BEFORE publishing. USE THIS WHEN: • Unsure if content will work on target platforms • Publishing to multiple platforms with different requirements • Want to catch errors before attempting publish Returns specific errors (e.g., 'TikTok requires video', 'Instagram needs media') and warnings (e.g., 'text close to character limit').

    mcp-tool

    {
      "type": "object",
      "required": [
        "platforms",
        "content"
      ],
      "properties": {
        "content": {
          "type": "object",
          "required": [
            "text"
          ],
          "properties": {
            "link": {
              "type": "string",
              "description": "Pinterest source URL for the pin"
            },
            "tags": {
              "type": "array",
              "items": {
                "type": "string"
              },
              "description": "YouTube video tags"
            },
            "text": {
              "type": "string",
              "description": "Post caption/text. Required for all platforms."
            },
            "title": {
              "type": "string",
              "description": "YouTube video title, Pinterest pin title"
            },
            "boardId": {
              "type": "string",
              "description": "Pinterest only: Board ID to pin to. If not specified, uses first available board."
            },
            "mediaUrl": {
              "type": "string",
              "description": "Public HTTPS media URL. Do NOT pass local file paths — use create_upload_session to get a public URL first."
            },
            "boardName": {
              "type": "string",
              "description": "Pinterest only: Board name (alternative to boardId). Searches for matching board."
            },
            "mediaType": {
              "enum": [
                "image",
                "video",
                "auto"
              ],
              "type": "string",
              "description": "Media type hint: 'image' for photos, 'video' for Reels/TikTok"
            },
            "mediaUrls": {
              "type": "array",
              "items": {
                "type": "string"
              },
              "description": "Carousel: Instagram (2-10 images), Threads (2-20 mixed), X (2-4 images)"
            },
            "description": {
              "type": "string",
              "description": "YouTube video description"
            },
            "youtubeMode": {
              "enum": [
                "auto",
                "short",
                "standard"
              ],
              "type": "string",
              "deprecated": true,
              "description": "Deprecated compatibility alias for YouTube mode. Preferred: content.platformSettings.youtube.youtubeMode"
            },
            "facebookMode": {
              "enum": [
                "auto",
                "reel",
                "feed"
              ],
              "type": "string",
              "deprecated": true,
              "description": "Deprecated compatibility alias for Facebook mode. Preferred: content.platformSettings.facebook.facebookMode"
            },
            "firstComment": {
              "type": "string",
              "description": "Instagram first comment text (often used for hashtags)"
            },
            "threadTweets": {
              "type": "array",
              "items": {
                "type": "object",
                "required": [
                  "text"
                ],
                "properties": {
                  "text": {
                    "type": "string",
                    "description": "Tweet text (max 280 chars)"
                  },
                  "mediaUrl": {
                    "type": "string",
                    "description": "Optional public HTTPS image or video URL for this tweet"
                  },
                  "mediaType": {
                    "enum": [
                      "image",
                      "video",
                      "auto"
                    ],
                    "type": "string",
                    "description": "Media type hint"
                  },
                  "mediaUrls": {
                    "type": "array",
                    "items": {
                      "type": "string"
                    },
                    "description": "Optional multiple images for this tweet (max 4)"
                  }
                }
              },
              "description": "X (Twitter) only: additional tweets in the thread after the main text. The main text is always the first tweet. Each item here becomes a subsequent reply in the thread."
            },
            "privacyStatus": {
              "enum": [
                "public",
                "unlisted",
                "private"
              ],
              "type": "string",
              "description": "YouTube video privacy: public, unlisted, or private"
            },
            "pinterestBoardId": {
              "type": "string",
              "deprecated": true,
              "description": "Deprecated compatibility alias for Pinterest board targeting. Preferred: content.platformSettings.pinterest.boardId"
            },
            "platformSettings": {
              "type": "object",
              "description": "Optional advanced per-platform settings map. Key by platform ID and use it for platform-specific publish options plus per-platform text/title/description overrides.",
              "additionalProperties": {
                "type": "object",
                "additionalProperties": true
              }
            }
          }
        },
        "platforms": {
          "type": "array",
          "items": {
            "enum": [
              "x",
              "linkedin",
              "linkedin-page",
              "facebook",
              "instagram",
              "threads",
              "bluesky",
              "mastodon",
              "nostr",
              "youtube",
              "tiktok",
              "lemmy",
              "discord",
              "slack",
              "telegram",
              "pinterest",
              "dribbble",
              "devto",
              "hashnode",
              "gmb",
              "whop",
              "producthunt"
            ],
            "type": "string"
          },
          "description": "Platforms to validate against"
        }
      }
    }
    arguments 181 lines
  • create_upload_session auth-required never probed

    Create a browser upload link for media files. ALWAYS use this when the user shares an image or video in chat — their file is local and cannot be passed directly to publish_content. WORKFLOW: 1. Call this tool to get an uploadUrl 2. Give the user the link to open in their browser and upload their file 3. After upload, call get_upload_session to get the public media URL(s) 4. Use the returned URL with publish_content or schedule_content Supports up to 20 files per session. Expires in 15 minutes.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "mediaType": {
          "enum": [
            "image",
            "video"
          ],
          "type": "string",
          "description": "Optional hint for expected media type"
        }
      }
    }
    arguments 13 lines
  • get_upload_session auth-required never probed

    Check the status of an upload session and get the media URL(s) once uploaded. Call this after the user clicks the upload link to see if they've completed the upload. Returns: • status: 'pending' - User hasn't uploaded yet • status: 'uploaded' - Upload complete, includes mediaUrl, mediaUrls, fileCount, mediaItems • status: 'expired' - Session expired (15 min limit)

    mcp-tool

    {
      "type": "object",
      "required": [
        "sessionId"
      ],
      "properties": {
        "sessionId": {
          "type": "string",
          "description": "The session ID returned from create_upload_session"
        }
      }
    }
    arguments 12 lines
  • create_goal auth-required never probed

    Create a new maker goal on Product Hunt. REQUIREMENTS: • Must have Product Hunt account connected • Write access requires app whitelisting by Product Hunt • Goal title limited to 280 characters If write access is not available, you'll receive an error with instructions to request whitelisting.

    mcp-tool

    {
      "type": "object",
      "required": [
        "title"
      ],
      "properties": {
        "dueAt": {
          "type": "string",
          "format": "date-time",
          "description": "Optional due date in ISO 8601 format"
        },
        "title": {
          "type": "string",
          "description": "Goal title (max 280 characters)"
        }
      }
    }
    arguments 17 lines
  • complete_goal auth-required never probed

    Mark a Product Hunt goal as complete or incomplete. REQUIREMENTS: • Must have Product Hunt account connected • Write access requires app whitelisting by Product Hunt

    mcp-tool

    {
      "type": "object",
      "required": [
        "goalId",
        "completed"
      ],
      "properties": {
        "goalId": {
          "type": "string",
          "description": "The ID of the goal to update"
        },
        "completed": {
          "type": "boolean",
          "description": "Set to true to mark complete, false to mark incomplete"
        }
      }
    }
    arguments 17 lines
  • get_producthunt_analytics auth-required never probed

    Get analytics for your products on Product Hunt. Returns: • Total products, votes, comments, reviews • Number of featured products • Per-product metrics including vote counts and ratings Works with read-only access (no whitelisting required).

    mcp-tool

    {
      "type": "object",
      "properties": {
        "limit": {
          "type": "number",
          "description": "Maximum products to fetch (default 20)"
        },
        "username": {
          "type": "string",
          "description": "Product Hunt username (optional, defaults to connected account)"
        }
      }
    }
    arguments 13 lines
  • bulk_schedule auth-required never probed

    Schedule multiple posts at once from CSV content. USE THIS WHEN: • User has a spreadsheet or list of posts to schedule • Planning a content calendar for a month • Migrating content from another tool CSV FORMAT (required columns): • platform: linkedin, instagram, x, tiktok, threads • scheduled_time: ISO 8601 format (e.g., 2024-02-15T10:00:00Z) • text: Post content/caption OPTIONAL COLUMNS: • media_url: Image or video URL • first_comment: First comment to add (Instagram/LinkedIn) • hashtags: Additional hashtags to append PROCESS: 1. First call with validate_only: true to check for errors 2. Review validation report with user 3. Call again with validate_only: false to execute import

    mcp-tool

    {
      "type": "object",
      "required": [
        "csv_content"
      ],
      "properties": {
        "filename": {
          "type": "string",
          "description": "Optional filename for tracking (default: upload.csv)"
        },
        "csv_content": {
          "type": "string",
          "description": "CSV content as a string (include header row)"
        },
        "skip_errors": {
          "type": "boolean",
          "description": "If true, skip rows with errors and schedule valid rows only"
        },
        "validate_only": {
          "type": "boolean",
          "description": "If true, only validate without scheduling. Default: true for safety."
        }
      }
    }
    arguments 24 lines
  • preview_content auth-required never probed

    Generate a visual preview of how content will appear on each platform. USE THIS WHEN: • Before publishing to see how posts will look • To validate content against platform requirements • To check character counts, hashtag limits, and media requirements Returns an HTML preview mockup for each platform with validation results: • Character count vs limit • Hashtag count (Instagram has 30 max) • Media requirement check • Platform-specific warnings and errors

    mcp-tool

    {
      "type": "object",
      "required": [
        "platforms",
        "content"
      ],
      "properties": {
        "content": {
          "type": "object",
          "required": [
            "text"
          ],
          "properties": {
            "text": {
              "type": "string",
              "description": "Post text/caption"
            },
            "mediaUrl": {
              "type": "string",
              "description": "Single media URL (optional)"
            },
            "mediaType": {
              "enum": [
                "image",
                "video",
                "auto"
              ],
              "type": "string",
              "description": "Media type hint"
            },
            "mediaUrls": {
              "type": "array",
              "items": {
                "type": "string"
              },
              "description": "Multiple media URLs for carousel (optional)"
            }
          }
        },
        "platforms": {
          "type": "array",
          "items": {
            "enum": [
              "x",
              "linkedin",
              "linkedin-page",
              "facebook",
              "instagram",
              "threads",
              "bluesky",
              "mastodon",
              "nostr",
              "youtube",
              "tiktok",
              "lemmy",
              "discord",
              "slack",
              "telegram",
              "pinterest",
              "dribbble",
              "devto",
              "hashnode",
              "gmb",
              "whop",
              "producthunt"
            ],
            "type": "string"
          },
          "description": "Platforms to generate previews for"
        }
      }
    }
    arguments 72 lines
  • list_dead_letter auth-required never probed

    List posts that failed all retry attempts and were moved to the dead letter queue. Review and decide to requeue or discard them.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "limit": {
          "type": "number",
          "description": "Maximum items to return (default 50)"
        },
        "status": {
          "enum": [
            "dead",
            "requeued",
            "discarded"
          ],
          "type": "string",
          "description": "Filter by status (default: dead)"
        },
        "team_id": {
          "type": "string",
          "description": "Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope."
        }
      }
    }
    arguments 22 lines
  • connect_x auth-required never probed

    Get the OAuth URL to connect your X account.

    mcp-tool

    {
      "type": "object",
      "properties": {}
    }
    arguments 4 lines
  • connect_linkedin-page auth-required never probed

    Get the OAuth URL to connect your LinkedIn Page account.

    mcp-tool

    {
      "type": "object",
      "properties": {}
    }
    arguments 4 lines
  • connect_facebook auth-required never probed

    Get the OAuth URL to connect your Facebook account.

    mcp-tool

    {
      "type": "object",
      "properties": {}
    }
    arguments 4 lines
  • connect_instagram auth-required never probed

    Get the OAuth URL to connect your Instagram account.

    mcp-tool

    {
      "type": "object",
      "properties": {}
    }
    arguments 4 lines
  • connect_youtube auth-required never probed

    Get the OAuth URL to connect your YouTube account.

    mcp-tool

    {
      "type": "object",
      "properties": {}
    }
    arguments 4 lines
  • connect_tiktok auth-required never probed

    Get the OAuth URL to connect your TikTok account.

    mcp-tool

    {
      "type": "object",
      "properties": {}
    }
    arguments 4 lines
  • connect_lemmy auth-required never probed

    Get the credential setup schema to connect Lemmy using API key or token credentials.

    mcp-tool

    {
      "type": "object",
      "properties": {}
    }
    arguments 4 lines
  • connect_discord auth-required never probed

    Get the webhook setup schema to connect Discord.

    mcp-tool

    {
      "type": "object",
      "properties": {}
    }
    arguments 4 lines
  • connect_slack auth-required never probed

    Get the webhook setup schema to connect Slack.

    mcp-tool

    {
      "type": "object",
      "properties": {}
    }
    arguments 4 lines
  • connect_whop auth-required never probed

    Get the credential setup schema to connect Whop using API key or token credentials. Note: This is an unofficial connector and may change without notice.

    mcp-tool

    {
      "type": "object",
      "properties": {}
    }
    arguments 4 lines
  • connect_producthunt auth-required never probed

    Get the OAuth URL to connect your Product Hunt account.

    mcp-tool

    {
      "type": "object",
      "properties": {}
    }
    arguments 4 lines
  • save_to_library auth-required never probed

    Save content to your library as a draft, template, or evergreen content for reuse.

    mcp-tool

    {
      "type": "object",
      "required": [
        "title",
        "text"
      ],
      "properties": {
        "tags": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Tags for organization"
        },
        "text": {
          "type": "string",
          "description": "The content text/caption"
        },
        "type": {
          "enum": [
            "draft",
            "template",
            "evergreen"
          ],
          "type": "string",
          "description": "Content type (default: draft)"
        },
        "title": {
          "type": "string",
          "description": "Title for the saved content"
        },
        "team_id": {
          "type": "string",
          "description": "Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope."
        },
        "category": {
          "type": "string",
          "description": "Category for organization"
        },
        "mediaUrl": {
          "type": "string",
          "description": "Media URL (image or video)"
        },
        "targetPlatforms": {
          "type": "array",
          "items": {
            "enum": [
              "x",
              "linkedin",
              "linkedin-page",
              "facebook",
              "instagram",
              "threads",
              "bluesky",
              "mastodon",
              "nostr",
              "youtube",
              "tiktok",
              "lemmy",
              "discord",
              "slack",
              "telegram",
              "pinterest",
              "dribbble",
              "devto",
              "hashnode",
              "gmb",
              "whop",
              "producthunt"
            ],
            "type": "string"
          },
          "description": "Which platforms this content is designed for"
        },
        "evergreenEnabled": {
          "type": "boolean",
          "description": "Enable evergreen auto-republishing"
        },
        "evergreenIntervalDays": {
          "type": "number",
          "description": "Days between evergreen republishes"
        }
      }
    }
    arguments 84 lines
  • update_library_item auth-required never probed

    Update an existing content library item.

    mcp-tool

    {
      "type": "object",
      "required": [
        "id"
      ],
      "properties": {
        "id": {
          "type": "string",
          "description": "The content library item ID"
        },
        "tags": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Tags"
        },
        "text": {
          "type": "string",
          "description": "New content text"
        },
        "type": {
          "enum": [
            "draft",
            "template",
            "evergreen"
          ],
          "type": "string",
          "description": "Content type"
        },
        "title": {
          "type": "string",
          "description": "New title"
        },
        "team_id": {
          "type": "string",
          "description": "Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope."
        },
        "category": {
          "type": "string",
          "description": "Category"
        },
        "mediaUrl": {
          "type": "string",
          "description": "Media URL"
        },
        "evergreenEnabled": {
          "type": "boolean",
          "description": "Enable evergreen"
        },
        "evergreenIntervalDays": {
          "type": "number",
          "description": "Republish interval in days"
        }
      }
    }
    arguments 56 lines
  • publish_from_library auth-required never probed

    Publish content directly from your library to one or more platforms.

    mcp-tool

    {
      "type": "object",
      "required": [
        "id",
        "platforms"
      ],
      "properties": {
        "id": {
          "type": "string",
          "description": "The content library item ID to publish"
        },
        "team_id": {
          "type": "string",
          "description": "Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope."
        },
        "platforms": {
          "type": "array",
          "items": {
            "enum": [
              "x",
              "linkedin",
              "linkedin-page",
              "facebook",
              "instagram",
              "threads",
              "bluesky",
              "mastodon",
              "nostr",
              "youtube",
              "tiktok",
              "lemmy",
              "discord",
              "slack",
              "telegram",
              "pinterest",
              "dribbble",
              "devto",
              "hashnode",
              "gmb",
              "whop",
              "producthunt"
            ],
            "type": "string"
          },
          "description": "Platforms to publish to"
        }
      }
    }
    arguments 48 lines
  • trigger_scheduled_post auth-required never probed

    Manually trigger a scheduled post to publish immediately.

    mcp-tool

    {
      "type": "object",
      "required": [
        "scheduleId"
      ],
      "properties": {
        "team_id": {
          "type": "string",
          "description": "Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope."
        },
        "scheduleId": {
          "type": "string",
          "description": "The ID of the scheduled post to trigger"
        }
      }
    }
    arguments 16 lines
  • create_brand_voice auth-required never probed

    Create a brand voice profile to guide AI content generation. Configurable fields: • tone: Overall tone (professional, casual, energetic, witty, etc.) • personality: Brand personality description • writingStyle: Writing style guidelines • doRules: Array of things the brand voice SHOULD do • dontRules: Array of things the brand voice should NEVER do • examplePosts: Example posts in this brand voice • approvedHashtags: Preferred hashtags to prioritize • bannedWords: Words to never use in content • keyPhrases: Key phrases to incorporate naturally

    mcp-tool

    {
      "type": "object",
      "required": [
        "name"
      ],
      "properties": {
        "name": {
          "type": "string",
          "description": "Name for this brand voice profile"
        },
        "tone": {
          "type": "string",
          "description": "Overall tone (e.g., professional, casual, energetic)"
        },
        "doRules": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Things the brand voice SHOULD do"
        },
        "dontRules": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Things the brand voice should NEVER do"
        },
        "isDefault": {
          "type": "boolean",
          "description": "Set as the default brand voice"
        },
        "keyPhrases": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Key phrases to incorporate"
        },
        "bannedWords": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Words to never use"
        },
        "personality": {
          "type": "string",
          "description": "Brand personality description"
        },
        "examplePosts": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Example posts in this voice"
        },
        "writingStyle": {
          "type": "string",
          "description": "Writing style guidelines"
        },
        "approvedHashtags": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Preferred hashtags"
        }
      }
    }
    arguments 70 lines
  • set_default_brand_voice auth-required never probed

    Set a brand voice profile as the default. The default brand voice is automatically used by all AI content generation tools.

    mcp-tool

    {
      "type": "object",
      "required": [
        "id"
      ],
      "properties": {
        "id": {
          "type": "string",
          "description": "The brand voice profile ID to set as default"
        }
      }
    }
    arguments 12 lines
  • approve_post auth-required never probed

    Approve a scheduled post that is pending approval. Once approved, it will be published at the scheduled time.

    mcp-tool

    {
      "type": "object",
      "required": [
        "postId"
      ],
      "properties": {
        "postId": {
          "type": "string",
          "description": "The scheduled post ID to approve"
        },
        "comment": {
          "type": "string",
          "description": "Optional approval comment"
        },
        "team_id": {
          "type": "string",
          "description": "Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope."
        }
      }
    }
    arguments 20 lines
  • reject_post auth-required never probed

    Reject a scheduled post that is pending approval. The post will not be published.

    mcp-tool

    {
      "type": "object",
      "required": [
        "postId",
        "reason"
      ],
      "properties": {
        "postId": {
          "type": "string",
          "description": "The scheduled post ID to reject"
        },
        "reason": {
          "type": "string",
          "description": "Reason for rejection"
        },
        "team_id": {
          "type": "string",
          "description": "Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope."
        }
      }
    }
    arguments 21 lines
  • list_inbox auth-required never probed

    List comment threads on your published posts. Returns threads from your social inbox, showing comments and replies from followers on your posts across all platforms.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "limit": {
          "type": "number",
          "description": "Max threads to return (default 20)"
        },
        "status": {
          "enum": [
            "open",
            "replied",
            "closed",
            "archived"
          ],
          "type": "string",
          "description": "Filter by thread status (optional)"
        },
        "platform": {
          "enum": [
            "x",
            "linkedin",
            "linkedin-page",
            "facebook",
            "instagram",
            "threads",
            "bluesky",
            "mastodon",
            "nostr",
            "youtube",
            "tiktok",
            "lemmy",
            "discord",
            "slack",
            "telegram",
            "pinterest",
            "dribbble",
            "devto",
            "hashnode",
            "gmb",
            "whop",
            "producthunt"
          ],
          "type": "string",
          "description": "Filter by platform (optional)"
        }
      }
    }
    arguments 47 lines
  • reply_to_comment auth-required never probed

    Reply to a comment on one of your published posts. Supported platforms: X (reply tweets), Threads, Instagram, Facebook, YouTube. Not supported: LinkedIn, Pinterest, TikTok.

    mcp-tool

    {
      "type": "object",
      "required": [
        "threadId",
        "text"
      ],
      "properties": {
        "text": {
          "type": "string",
          "description": "Your reply text"
        },
        "threadId": {
          "type": "string",
          "description": "The inbox thread ID to reply to"
        }
      }
    }
    arguments 17 lines
  • create_ad_creative auth-required never probed

    Create an ad creative (image, video, carousel, or text ad). The Creative Asset agent can help generate ad visuals and copy.

    mcp-tool

    {
      "type": "object",
      "required": [
        "campaignId",
        "creativeType",
        "headline",
        "body"
      ],
      "properties": {
        "body": {
          "type": "string",
          "description": "Ad body text"
        },
        "name": {
          "type": "string",
          "description": "Creative name"
        },
        "adSetId": {
          "type": "string",
          "description": "Ad set ID (optional)"
        },
        "headline": {
          "type": "string",
          "description": "Ad headline"
        },
        "mediaUrls": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Media URLs for the creative"
        },
        "campaignId": {
          "type": "string",
          "description": "Campaign ID"
        },
        "landingUrl": {
          "type": "string",
          "description": "Landing page URL"
        },
        "callToAction": {
          "enum": [
            "learn_more",
            "shop_now",
            "sign_up",
            "book_now",
            "contact_us",
            "download",
            "get_offer",
            "subscribe"
          ],
          "type": "string",
          "description": "Call to action button text"
        },
        "creativeType": {
          "enum": [
            "image",
            "video",
            "carousel",
            "text",
            "native"
          ],
          "type": "string",
          "description": "Creative type"
        }
      }
    }
    arguments 67 lines
  • get_best_times auth-required never probed

    Get the optimal posting times for a platform based on your historical engagement data. Returns top time slots ranked by engagement score. Falls back to industry defaults when insufficient personal data exists.

    mcp-tool

    {
      "type": "object",
      "required": [
        "platform"
      ],
      "properties": {
        "limit": {
          "type": "number",
          "description": "Number of time slots to return (default 5, max 20)"
        },
        "platform": {
          "enum": [
            "x",
            "linkedin",
            "linkedin-page",
            "facebook",
            "instagram",
            "threads",
            "bluesky",
            "mastodon",
            "nostr",
            "youtube",
            "tiktok",
            "lemmy",
            "discord",
            "slack",
            "telegram",
            "pinterest",
            "dribbble",
            "devto",
            "hashnode",
            "gmb",
            "whop",
            "producthunt"
          ],
          "type": "string",
          "description": "Platform to get best times for"
        }
      }
    }
    arguments 40 lines
  • score_content auth-required never probed

    Score content quality on a 0-100 scale before publishing. Evaluates 5 factors (20 points each): 1. Text length optimization for target platforms 2. Hashtag count optimization 3. Posting time alignment with best engagement windows 4. Media presence (images/videos) 5. Content patterns (CTA, hooks, formatting, emoji) Returns overall score, per-factor breakdown, and improvement suggestions.

    mcp-tool

    {
      "type": "object",
      "required": [
        "platforms",
        "text"
      ],
      "properties": {
        "text": {
          "type": "string",
          "description": "The post text content"
        },
        "mediaUrl": {
          "type": "string",
          "description": "Primary media URL (optional)"
        },
        "mediaUrls": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Multiple media URLs for carousel (optional)"
        },
        "platforms": {
          "type": "array",
          "items": {
            "enum": [
              "x",
              "linkedin",
              "linkedin-page",
              "facebook",
              "instagram",
              "threads",
              "bluesky",
              "mastodon",
              "nostr",
              "youtube",
              "tiktok",
              "lemmy",
              "discord",
              "slack",
              "telegram",
              "pinterest",
              "dribbble",
              "devto",
              "hashnode",
              "gmb",
              "whop",
              "producthunt"
            ],
            "type": "string"
          },
          "description": "Target platforms to score against"
        },
        "scheduledTime": {
          "type": "string",
          "format": "date-time",
          "description": "Scheduled publish time in ISO 8601 (optional, improves time score)"
        }
      }
    }
    arguments 60 lines
  • get_audit_log auth-required never probed

    Retrieve audit log entries for your account. Shows a timestamped trail of all actions performed: publishes, schedules, account connections, content library changes, etc. Filter by action type, resource type, or date range.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "limit": {
          "type": "number",
          "description": "Max entries to return (default 50, max 200)"
        },
        "action": {
          "type": "string",
          "description": "Filter by action (e.g. 'post.published', 'account.connected')"
        },
        "end_date": {
          "type": "string",
          "format": "date",
          "description": "End date (YYYY-MM-DD)"
        },
        "start_date": {
          "type": "string",
          "format": "date",
          "description": "Start date (YYYY-MM-DD)"
        },
        "resource_type": {
          "type": "string",
          "description": "Filter by resource type (e.g. 'post', 'account', 'keyword')"
        }
      }
    }
    arguments 27 lines
  • generate_ai_media auth-required never probed

    Generate AI images or videos using approved media providers. Supported providers: - heygen-mcp: HeyGen Direct API or MCP video/avatar generation - codex-oauth-image: Codex OAuth image generation for gpt-image-2 Returns a job ID that can be polled for status.

    mcp-tool

    {
      "type": "object",
      "required": [
        "provider",
        "prompt"
      ],
      "properties": {
        "prompt": {
          "type": "string",
          "description": "Creative prompt for generation"
        },
        "provider": {
          "enum": [
            "heygen-mcp",
            "codex-oauth-image"
          ],
          "type": "string",
          "description": "AI media provider"
        },
        "media_type": {
          "enum": [
            "image",
            "video"
          ],
          "type": "string",
          "description": "Type of media to generate (default: video)"
        },
        "parameters": {
          "type": "object",
          "description": "Provider-specific parameters (e.g. duration, resolution, style, aspectRatio)"
        }
      }
    }
    arguments 33 lines
  • check_ai_media_status auth-required never probed

    Check the status of an AI media generation job. Returns current status (pending, processing, completed, failed) and result URL when complete.

    mcp-tool

    {
      "type": "object",
      "required": [
        "job_id"
      ],
      "properties": {
        "job_id": {
          "type": "string",
          "description": "The AI media job ID to check"
        }
      }
    }
    arguments 12 lines
  • generate_content auth-required never probed

    Generate AI-powered platform-optimized content without publishing. Uses AI to create platform-specific text, hashtags, and titles from a prompt or media URL. Respects brand voice profiles if configured. Returns generated content variants for each target platform. Use publish_content to publish the generated content, or publish_ai to generate and publish in one step.

    mcp-tool

    {
      "type": "object",
      "required": [
        "platforms"
      ],
      "properties": {
        "prompt": {
          "type": "string",
          "description": "Creative prompt or topic for content generation"
        },
        "hashtags": {
          "enum": [
            "on",
            "off",
            "platform_auto"
          ],
          "type": "string",
          "description": "Hashtag mode"
        },
        "mediaUrl": {
          "type": "string",
          "description": "Media URL to analyze for content generation"
        },
        "strictAi": {
          "type": "boolean",
          "description": "If true, fail instead of using fallback templates when AI is unavailable"
        },
        "platforms": {
          "type": "array",
          "items": {
            "enum": [
              "x",
              "linkedin",
              "linkedin-page",
              "facebook",
              "instagram",
              "threads",
              "bluesky",
              "mastodon",
              "nostr",
              "youtube",
              "tiktok",
              "lemmy",
              "discord",
              "slack",
              "telegram",
              "pinterest",
              "dribbble",
              "devto",
              "hashnode",
              "gmb",
              "whop",
              "producthunt"
            ],
            "type": "string"
          },
          "description": "Target platforms to generate content for"
        },
        "generation": {
          "type": "object",
          "properties": {
            "tone": {
              "enum": [
                "professional",
                "casual",
                "energetic",
                "informative"
              ],
              "type": "string",
              "description": "Content tone"
            },
            "style": {
              "enum": [
                "storytelling",
                "promotional",
                "educational",
                "entertaining"
              ],
              "type": "string",
              "description": "Content style"
            },
            "callToAction": {
              "type": "string",
              "description": "Call to action to include"
            }
          },
          "description": "Generation parameters for tone, style, and CTA"
        },
        "contentOverrides": {
          "type": "object",
          "properties": {
            "title": {
              "type": "string",
              "description": "Override generated title"
            },
            "caption": {
              "type": "string",
              "description": "Override generated caption"
            },
            "hashtags": {
              "type": "array",
              "items": {
                "type": "string"
              },
              "description": "Override generated hashtags"
            }
          },
          "description": "Manual overrides for generated content"
        }
      }
    }
    arguments 111 lines
  • publish_ai auth-required never probed

    Generate AI content and publish it in a single step. Combines generate_content + publish_content into one call. First generates platform-optimized content using AI, then publishes to the specified platforms. Same platform requirements as publish_content apply.

    mcp-tool

    {
      "type": "object",
      "required": [
        "platforms"
      ],
      "properties": {
        "prompt": {
          "type": "string",
          "description": "Creative prompt for AI content generation"
        },
        "hashtags": {
          "enum": [
            "on",
            "off",
            "platform_auto"
          ],
          "type": "string"
        },
        "mediaUrl": {
          "type": "string",
          "description": "Media URL for the post"
        },
        "strictAi": {
          "type": "boolean"
        },
        "mediaType": {
          "enum": [
            "image",
            "video",
            "auto"
          ],
          "type": "string",
          "description": "Media type hint"
        },
        "mediaUrls": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Multiple media URLs for carousel"
        },
        "platforms": {
          "type": "array",
          "items": {
            "enum": [
              "x",
              "linkedin",
              "linkedin-page",
              "facebook",
              "instagram",
              "threads",
              "bluesky",
              "mastodon",
              "nostr",
              "youtube",
              "tiktok",
              "lemmy",
              "discord",
              "slack",
              "telegram",
              "pinterest",
              "dribbble",
              "devto",
              "hashnode",
              "gmb",
              "whop",
              "producthunt"
            ],
            "type": "string"
          },
          "description": "Target platforms to generate content for and publish to"
        },
        "generation": {
          "type": "object",
          "properties": {
            "tone": {
              "enum": [
                "professional",
                "casual",
                "energetic",
                "informative"
              ],
              "type": "string"
            },
            "style": {
              "enum": [
                "storytelling",
                "promotional",
                "educational",
                "entertaining"
              ],
              "type": "string"
            },
            "callToAction": {
              "type": "string"
            }
          }
        },
        "contentOverrides": {
          "type": "object",
          "properties": {
            "title": {
              "type": "string"
            },
            "caption": {
              "type": "string"
            },
            "hashtags": {
              "type": "array",
              "items": {
                "type": "string"
              }
            }
          }
        }
      }
    }
    arguments 117 lines
  • create_library_item auth-required never probed

    Save content to your library as a draft, template, or evergreen content for reuse. Alias for save_to_library.

    mcp-tool

    {
      "type": "object",
      "required": [
        "title",
        "text"
      ],
      "properties": {
        "tags": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Tags for organization"
        },
        "text": {
          "type": "string",
          "description": "The content text/caption"
        },
        "type": {
          "enum": [
            "draft",
            "template",
            "evergreen"
          ],
          "type": "string",
          "description": "Content type (default: draft)"
        },
        "title": {
          "type": "string",
          "description": "Title for the saved content"
        },
        "category": {
          "type": "string",
          "description": "Category for organization"
        },
        "mediaUrl": {
          "type": "string",
          "description": "Media URL (image or video)"
        },
        "targetPlatforms": {
          "type": "array",
          "items": {
            "enum": [
              "x",
              "linkedin",
              "linkedin-page",
              "facebook",
              "instagram",
              "threads",
              "bluesky",
              "mastodon",
              "nostr",
              "youtube",
              "tiktok",
              "lemmy",
              "discord",
              "slack",
              "telegram",
              "pinterest",
              "dribbble",
              "devto",
              "hashnode",
              "gmb",
              "whop",
              "producthunt"
            ],
            "type": "string"
          },
          "description": "Which platforms this content is designed for"
        },
        "evergreenEnabled": {
          "type": "boolean",
          "description": "Enable evergreen auto-republishing"
        },
        "evergreenIntervalDays": {
          "type": "number",
          "description": "Days between evergreen republishes"
        }
      }
    }
    arguments 80 lines
  • draft_reply auth-required never probed

    Generate an AI-powered reply draft for a social mention. Returns a draft with tone and safety flags.

    mcp-tool

    {
      "type": "object",
      "required": [
        "mention_id"
      ],
      "properties": {
        "tone": {
          "type": "string",
          "description": "Reply tone: friendly, professional, casual"
        },
        "max_length": {
          "type": "number",
          "description": "Maximum reply length in characters (default: 280)"
        },
        "mention_id": {
          "type": "string",
          "description": "The ID of the mention to reply to (required)"
        }
      }
    }
    arguments 20 lines
  • generate_post_bundle auth-required never probed

    Generate multi-variant AI content with quality scoring for multiple platforms. Returns the best variant plus alternatives.

    mcp-tool

    {
      "type": "object",
      "required": [
        "platforms",
        "prompt"
      ],
      "properties": {
        "prompt": {
          "type": "string",
          "description": "Content topic or instructions (required)"
        },
        "platforms": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Target platforms (required)"
        },
        "generation": {
          "type": "object",
          "properties": {
            "tone": {
              "type": "string"
            },
            "style": {
              "type": "string"
            },
            "callToAction": {
              "type": "string"
            }
          },
          "description": "Generation parameters (tone, style, CTA)"
        },
        "variant_count": {
          "type": "number",
          "description": "Number of variants to generate (1-5, default: 3)"
        }
      }
    }
    arguments 39 lines
  • critique_post auth-required never probed

    Score and critique post content with AI-powered suggestions. Returns a quality score (0-100), breakdown, and improvement tips.

    mcp-tool

    {
      "type": "object",
      "required": [
        "platforms",
        "text"
      ],
      "properties": {
        "text": {
          "type": "string",
          "description": "Post text to critique (required)"
        },
        "mediaUrl": {
          "type": "string",
          "description": "Optional media URL for media score"
        },
        "platforms": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Target platforms for scoring context (required)"
        }
      }
    }
    arguments 24 lines
  • get_platform_settings_schema auth-required never probed

    Get the JSON schema contract for content.platformSettings.<platformId>, including platform-specific publish options, validation-only gates, and supported per-platform content overrides.

    mcp-tool

    {
      "type": "object",
      "required": [
        "platform"
      ],
      "properties": {
        "platform": {
          "enum": [
            "x",
            "linkedin",
            "linkedin-page",
            "facebook",
            "instagram",
            "threads",
            "bluesky",
            "mastodon",
            "nostr",
            "youtube",
            "tiktok",
            "lemmy",
            "discord",
            "slack",
            "telegram",
            "pinterest",
            "dribbble",
            "devto",
            "hashnode",
            "gmb",
            "whop",
            "producthunt"
          ],
          "type": "string",
          "description": "Platform ID to inspect"
        }
      }
    }
    arguments 36 lines
  • list_connectors auth-required never probed

    List all available connectors in the SendIt platform. Returns connectors organized by category: organic, paid_media, automation, workspace. Each connector includes its ID, name, status, auth strategy, and capabilities. Use this to discover what integrations are available before connecting.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "status": {
          "enum": [
            "available",
            "beta",
            "coming_soon"
          ],
          "type": "string",
          "description": "Filter by availability status (optional)"
        },
        "category": {
          "enum": [
            "organic",
            "paid_media",
            "automation",
            "workspace"
          ],
          "type": "string",
          "description": "Filter by connector category (optional)"
        }
      }
    }
    arguments 24 lines
  • connect_connector auth-required never probed

    Initiate authentication flow for a connector. For OAuth2 connectors, returns an authorization URL. For API key connectors, stores the provided key. For webhook connectors, registers the webhook URL.

    mcp-tool

    {
      "type": "object",
      "required": [
        "connectorId"
      ],
      "properties": {
        "apiKey": {
          "type": "string",
          "description": "API key (for api_key auth strategy connectors)"
        },
        "botToken": {
          "type": "string",
          "description": "Bot token (for bot_token auth strategy connectors like Telegram, Discord)"
        },
        "webhookUrl": {
          "type": "string",
          "description": "Webhook URL (for webhook auth strategy connectors)"
        },
        "connectorId": {
          "type": "string",
          "description": "Connector ID to connect"
        }
      }
    }
    arguments 24 lines
  • disconnect_connector auth-required never probed

    Disconnect and revoke credentials for a connector.

    mcp-tool

    {
      "type": "object",
      "required": [
        "connectorId"
      ],
      "properties": {
        "connectorId": {
          "type": "string",
          "description": "Connector ID to disconnect"
        },
        "credentialId": {
          "type": "string",
          "description": "Specific credential ID to revoke (optional)"
        }
      }
    }
    arguments 16 lines
  • execute_connector_operation auth-required never probed

    Execute a specific operation on a connected connector. Use get_connector_capabilities to discover available operations. Operations include read/write actions specific to each connector.

    mcp-tool

    {
      "type": "object",
      "required": [
        "connectorId",
        "operation"
      ],
      "properties": {
        "data": {
          "type": "object",
          "description": "Operation-specific input data",
          "additionalProperties": true
        },
        "operation": {
          "type": "string",
          "description": "Operation name (e.g., 'publish', 'read_posts', 'campaigns.list')"
        },
        "connectorId": {
          "type": "string",
          "description": "Connector ID"
        },
        "idempotencyKey": {
          "type": "string",
          "description": "Idempotency key to prevent duplicate operations (optional)"
        }
      }
    }
    arguments 26 lines
  • list_ad_accounts auth-required never probed

    List all connected advertising accounts across platforms. Returns ad accounts from Meta Ads, Google Ads, LinkedIn Ads, TikTok Ads, etc.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "platform": {
          "type": "string",
          "description": "Filter by ad platform (e.g., 'meta_ads', 'google_ads_search')"
        }
      }
    }
    arguments 9 lines
  • create_ad_campaign auth-required never probed

    Create a new advertising campaign on a connected ad platform. Supports campaign creation across Meta Ads, Google Ads, LinkedIn Ads, TikTok Ads, Pinterest Ads, and all other connected ad platforms. The AI Campaign Builder agent can help design optimal campaign structures.

    mcp-tool

    {
      "type": "object",
      "required": [
        "adAccountId",
        "name",
        "objective",
        "budgetType",
        "budgetAmount"
      ],
      "properties": {
        "name": {
          "type": "string",
          "description": "Campaign name"
        },
        "endDate": {
          "type": "string",
          "format": "date-time",
          "description": "Campaign end date (optional)"
        },
        "objective": {
          "enum": [
            "awareness",
            "traffic",
            "engagement",
            "leads",
            "conversions",
            "app_installs",
            "video_views",
            "reach"
          ],
          "type": "string",
          "description": "Campaign objective"
        },
        "startDate": {
          "type": "string",
          "format": "date-time",
          "description": "Campaign start date (ISO 8601)"
        },
        "targeting": {
          "type": "object",
          "description": "Targeting configuration (platform-specific)",
          "additionalProperties": true
        },
        "budgetType": {
          "enum": [
            "daily",
            "lifetime"
          ],
          "type": "string",
          "description": "Budget type"
        },
        "adAccountId": {
          "type": "string",
          "description": "Ad account ID"
        },
        "budgetAmount": {
          "type": "number",
          "description": "Budget amount in account currency"
        }
      }
    }
    arguments 61 lines
  • get_conversation auth-required never probed

    Get full conversation thread with all messages.

    mcp-tool

    {
      "type": "object",
      "required": [
        "conversationId"
      ],
      "properties": {
        "conversationId": {
          "type": "string",
          "description": "Conversation ID"
        }
      }
    }
    arguments 12 lines
  • get_ad_performance auth-required never probed

    Get performance metrics for campaigns, ad sets, or creatives. Returns impressions, clicks, spend, conversions, CTR, CPC, CPM, ROAS, and custom metrics. Supports date range filtering and breakdown by day.

    mcp-tool

    {
      "type": "object",
      "required": [
        "entityType",
        "entityId"
      ],
      "properties": {
        "endDate": {
          "type": "string",
          "format": "date",
          "description": "End date (YYYY-MM-DD)"
        },
        "metrics": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Specific metrics to retrieve (optional, returns all by default)"
        },
        "entityId": {
          "type": "string",
          "description": "Entity ID"
        },
        "breakdown": {
          "enum": [
            "none",
            "day",
            "week",
            "month",
            "platform"
          ],
          "type": "string",
          "description": "Breakdown dimension"
        },
        "startDate": {
          "type": "string",
          "format": "date",
          "description": "Start date (YYYY-MM-DD)"
        },
        "entityType": {
          "enum": [
            "account",
            "campaign",
            "ad_set",
            "creative"
          ],
          "type": "string",
          "description": "Entity type to get metrics for"
        }
      }
    }
    arguments 51 lines
  • get_unified_ad_report auth-required never probed

    Get a cross-platform advertising performance report. Aggregates metrics across all connected ad platforms into a single view. Useful for comparing performance across Meta, Google, LinkedIn, TikTok, etc.

    mcp-tool

    {
      "type": "object",
      "required": [
        "startDate",
        "endDate"
      ],
      "properties": {
        "endDate": {
          "type": "string",
          "format": "date",
          "description": "End date"
        },
        "groupBy": {
          "enum": [
            "platform",
            "campaign",
            "objective",
            "day"
          ],
          "type": "string",
          "description": "Group results by dimension"
        },
        "startDate": {
          "type": "string",
          "format": "date",
          "description": "Start date"
        }
      }
    }
    arguments 29 lines
  • repurpose_url auth-required never probed

    Takes a URL (article, YouTube video, or podcast) and repurposes its content into platform-optimized posts. Supports: • Web articles — extracts text content • YouTube videos — extracts transcript/captions • Podcast RSS feeds — extracts episode descriptions and show notes Returns platform-specific formatted output (X threads, Instagram carousel slides, Medium articles, etc.) with a quality score (0-100) for each variant.

    mcp-tool

    {
      "type": "object",
      "required": [
        "url",
        "target_platforms"
      ],
      "properties": {
        "url": {
          "type": "string",
          "description": "Source URL to repurpose (article, YouTube video, or podcast RSS feed)"
        },
        "tone": {
          "type": "string",
          "description": "Optional tone override (e.g., 'professional', 'casual', 'witty')"
        },
        "brand_voice_id": {
          "type": "string",
          "description": "Optional brand voice profile ID to apply"
        },
        "target_platforms": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Target platforms to generate content for (e.g., ['x', 'linkedin', 'instagram'])"
        }
      }
    }
    arguments 28 lines
  • list_agents auth-required never probed

    List all available AI agents and their capabilities. SendIt includes 12 specialized agents: • Strategy Planner - Content strategy from audience/trend analysis • Content Ideation - Topic ideas from trends and calendar gaps • Multi-Format Composer - Platform-optimized content from a brief • Creative Asset - AI image/video generation orchestration • Variant Repurposer - Repurpose content for different platforms • Calendar Optimizer - Optimal posting time suggestions • Listening Analyst - Social mention and sentiment analysis • Inbox Reply - Contextual reply drafts with brand voice • Campaign Builder - Ad campaign structure recommendations • Budget Optimizer - Spend pacing and budget reallocation • Experimentation - A/B test design and analysis • Executive Insights - Executive summary reports

    mcp-tool

    {
      "type": "object",
      "properties": {}
    }
    arguments 4 lines
  • invoke_agent auth-required never probed

    Invoke a specific AI agent with given inputs. The agent will execute within policy constraints and return structured output. All agent runs are logged for audit and traceability.

    mcp-tool

    {
      "type": "object",
      "required": [
        "agentId",
        "input"
      ],
      "properties": {
        "input": {
          "type": "object",
          "description": "Agent-specific input parameters",
          "additionalProperties": true
        },
        "agentId": {
          "enum": [
            "strategy_planner",
            "content_ideation",
            "multi_format_composer",
            "creative_asset",
            "variant_repurposer",
            "calendar_optimizer",
            "listening_analyst",
            "inbox_reply",
            "campaign_builder",
            "budget_optimizer",
            "experimentation",
            "executive_insights"
          ],
          "type": "string",
          "description": "Agent to invoke"
        },
        "context": {
          "type": "object",
          "description": "Additional context (brand voice ID, date range, etc.)",
          "additionalProperties": true
        }
      }
    }
    arguments 37 lines
  • get_agent_policies auth-required never probed

    Get the active policies/guardrails for an agent.

    mcp-tool

    {
      "type": "object",
      "required": [
        "agentId"
      ],
      "properties": {
        "agentId": {
          "enum": [
            "strategy_planner",
            "content_ideation",
            "multi_format_composer",
            "creative_asset",
            "variant_repurposer",
            "calendar_optimizer",
            "listening_analyst",
            "inbox_reply",
            "campaign_builder",
            "budget_optimizer",
            "experimentation",
            "executive_insights"
          ],
          "type": "string",
          "description": "Agent to get policies for"
        }
      }
    }
    arguments 26 lines
  • update_agent_policy auth-required never probed

    Create or update a policy/guardrail for an agent. Policy types: • brand_safety - Content must align with brand guidelines • platform_compliance - Must follow platform ad policies • approval_gate - Require human approval before execution • budget_limit - Cap spending or resource usage • content_filter - Filter certain topics or language

    mcp-tool

    {
      "type": "object",
      "required": [
        "agentId",
        "policyType",
        "rules"
      ],
      "properties": {
        "rules": {
          "type": "array",
          "items": {
            "type": "object",
            "required": [
              "condition",
              "action",
              "reason"
            ],
            "properties": {
              "action": {
                "enum": [
                  "allow",
                  "block",
                  "require_approval",
                  "warn"
                ],
                "type": "string"
              },
              "reason": {
                "type": "string",
                "description": "Reason for this rule"
              },
              "condition": {
                "type": "string",
                "description": "Rule condition"
              }
            }
          },
          "description": "Policy rules"
        },
        "active": {
          "type": "boolean",
          "description": "Whether policy is active"
        },
        "agentId": {
          "enum": [
            "strategy_planner",
            "content_ideation",
            "multi_format_composer",
            "creative_asset",
            "variant_repurposer",
            "calendar_optimizer",
            "listening_analyst",
            "inbox_reply",
            "campaign_builder",
            "budget_optimizer",
            "experimentation",
            "executive_insights"
          ],
          "type": "string",
          "description": "Agent to set policy for"
        },
        "policyType": {
          "enum": [
            "brand_safety",
            "platform_compliance",
            "approval_gate",
            "budget_limit",
            "content_filter"
          ],
          "type": "string",
          "description": "Policy type"
        }
      }
    }
    arguments 74 lines
  • create_workflow auth-required never probed

    Create a new automation workflow. Workflows consist of a trigger and a sequence of steps. Trigger types: • manual - Run on demand • schedule - Cron-based schedule • event - Triggered by SendIt events (post published, mention detected, etc.) • webhook - Triggered by external webhook • connector_event - Triggered by connector-specific events Step types: • connector_action - Execute a connector operation • connector_operation - Alias of connector_action • agent_invoke - Run an AI agent • condition - Conditional control step (skip subsequent steps) • delay - Wait for a duration • http_request - Outbound HTTP request • transform - Transform data between steps • notify - Send notification (email, Slack, etc.)

    mcp-tool

    {
      "type": "object",
      "required": [
        "name",
        "triggerType",
        "triggerConfig",
        "steps"
      ],
      "properties": {
        "name": {
          "type": "string",
          "description": "Workflow name"
        },
        "steps": {
          "type": "array",
          "items": {
            "type": "object",
            "required": [
              "type",
              "name",
              "config"
            ],
            "properties": {
              "name": {
                "type": "string"
              },
              "type": {
                "enum": [
                  "connector_action",
                  "connector_operation",
                  "agent_invoke",
                  "condition",
                  "delay",
                  "http_request",
                  "transform",
                  "notify"
                ],
                "type": "string"
              },
              "config": {
                "type": "object",
                "additionalProperties": true
              },
              "onError": {
                "enum": [
                  "stop",
                  "skip",
                  "retry"
                ],
                "type": "string"
              }
            }
          },
          "description": "Workflow steps in execution order"
        },
        "active": {
          "type": "boolean",
          "description": "Activate workflow immediately (default: false)"
        },
        "description": {
          "type": "string",
          "description": "Workflow description"
        },
        "triggerType": {
          "enum": [
            "manual",
            "schedule",
            "event",
            "webhook",
            "connector_event"
          ],
          "type": "string",
          "description": "Trigger type"
        },
        "triggerConfig": {
          "type": "object",
          "description": "Trigger configuration (cron expression, event type, etc.)",
          "additionalProperties": true
        }
      }
    }
    arguments 81 lines
  • update_workflow auth-required never probed

    Update a workflow's configuration or status.

    mcp-tool

    {
      "type": "object",
      "required": [
        "workflowId"
      ],
      "properties": {
        "name": {
          "type": "string"
        },
        "steps": {
          "type": "array",
          "items": {
            "type": "object",
            "additionalProperties": true
          }
        },
        "active": {
          "type": "boolean"
        },
        "workflowId": {
          "type": "string",
          "description": "Workflow ID"
        }
      }
    }
    arguments 25 lines
  • delete_workflow auth-required never probed

    Delete a workflow permanently.

    mcp-tool

    {
      "type": "object",
      "required": [
        "workflowId"
      ],
      "properties": {
        "workflowId": {
          "type": "string",
          "description": "Workflow ID"
        }
      }
    }
    arguments 12 lines
  • trigger_workflow auth-required never probed

    Manually trigger a workflow run.

    mcp-tool

    {
      "type": "object",
      "required": [
        "workflowId"
      ],
      "properties": {
        "inputData": {
          "type": "object",
          "description": "Input data to pass to the workflow run",
          "additionalProperties": true
        },
        "workflowId": {
          "type": "string",
          "description": "Workflow ID to trigger"
        }
      }
    }
    arguments 17 lines
  • get_unified_analytics auth-required never probed

    Get cross-platform analytics combining organic and paid performance. Aggregates metrics across all connected platforms into a single view. Supports time-series breakdowns and platform comparison.

    mcp-tool

    {
      "type": "object",
      "required": [
        "startDate",
        "endDate"
      ],
      "properties": {
        "endDate": {
          "type": "string",
          "format": "date",
          "description": "End date (YYYY-MM-DD)"
        },
        "breakdown": {
          "enum": [
            "none",
            "day",
            "week",
            "month",
            "platform",
            "content_type"
          ],
          "type": "string",
          "description": "Breakdown dimension"
        },
        "platforms": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Filter to specific platforms (optional, all if omitted)"
        },
        "startDate": {
          "type": "string",
          "format": "date",
          "description": "Start date (YYYY-MM-DD)"
        },
        "includePaid": {
          "type": "boolean",
          "description": "Include paid metrics (default true)"
        },
        "includeOrganic": {
          "type": "boolean",
          "description": "Include organic metrics (default true)"
        }
      }
    }
    arguments 46 lines
  • create_project auth-required never probed

    Create a Projects workspace for a product, app, or codebase.

    mcp-tool

    {
      "type": "object",
      "required": [
        "name"
      ],
      "properties": {
        "name": {
          "type": "string"
        },
        "tags": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "sources": {
          "type": "array",
          "items": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "properties": {
                  "url": {
                    "type": "string"
                  },
                  "title": {
                    "type": "string"
                  },
                  "fileName": {
                    "type": "string"
                  },
                  "mimeType": {
                    "type": "string"
                  }
                },
                "additionalProperties": true
              }
            ]
          }
        },
        "team_id": {
          "type": "string",
          "description": "Optional team ID or slug. Ignored when using a team-scoped API key."
        },
        "category": {
          "type": "string"
        },
        "description": {
          "type": "string"
        }
      }
    }
    arguments 55 lines
  • get_attribution_report auth-required never probed

    Generate an attribution report showing how channels contribute to conversions. Models: • first_touch - All credit to first interaction • last_touch - All credit to last interaction • linear - Equal credit across all touchpoints • time_decay - More credit to recent touchpoints • position_based - 40% first, 40% last, 20% middle • data_driven - ML-based attribution

    mcp-tool

    {
      "type": "object",
      "required": [
        "model",
        "startDate",
        "endDate"
      ],
      "properties": {
        "model": {
          "enum": [
            "first_touch",
            "last_touch",
            "linear",
            "time_decay",
            "position_based",
            "data_driven"
          ],
          "type": "string",
          "description": "Attribution model"
        },
        "endDate": {
          "type": "string",
          "format": "date"
        },
        "startDate": {
          "type": "string",
          "format": "date"
        },
        "conversionType": {
          "type": "string",
          "description": "Filter by conversion type (optional)"
        }
      }
    }
    arguments 34 lines
  • get_anomaly_alerts auth-required never probed

    Get recent anomaly alerts detected across metrics. Includes sudden drops/spikes in engagement, unusual spend patterns, and content performance outliers.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "limit": {
          "type": "number",
          "description": "Max results (default 20)"
        },
        "severity": {
          "enum": [
            "info",
            "warning",
            "critical"
          ],
          "type": "string",
          "description": "Filter by severity (optional)"
        },
        "dismissed": {
          "type": "boolean",
          "description": "Include dismissed alerts"
        }
      }
    }
    arguments 22 lines
  • get_benchmark_comparison auth-required never probed

    Compare your performance against industry benchmarks. Returns how your engagement rates, growth, and content performance compare to similar accounts in your industry.

    mcp-tool

    {
      "type": "object",
      "required": [
        "platform",
        "metric"
      ],
      "properties": {
        "metric": {
          "enum": [
            "engagement_rate",
            "follower_growth",
            "click_through_rate",
            "conversion_rate",
            "cost_per_click"
          ],
          "type": "string",
          "description": "Metric to compare"
        },
        "industry": {
          "type": "string",
          "description": "Industry vertical for comparison"
        },
        "platform": {
          "type": "string",
          "description": "Platform to benchmark"
        }
      }
    }
    arguments 28 lines
  • get_post_analytics auth-required never probed

    Fetch drilldown analytics for one published post, including per-snapshot metrics and campaign context.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "id": {
          "type": "string",
          "description": "Compatibility alias for postId."
        },
        "postId": {
          "type": "string",
          "description": "Published post ID to inspect."
        },
        "team_id": {
          "type": "string",
          "description": "Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope."
        },
        "publishedPostId": {
          "type": "string",
          "description": "Compatibility alias for postId."
        }
      }
    }
    arguments 21 lines
  • list_analytics_reports auth-required never probed

    List saved analytics report definitions for the current personal or team scope.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "team_id": {
          "type": "string",
          "description": "Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope."
        }
      }
    }
    arguments 9 lines
  • run_analytics_report auth-required never probed

    Execute one saved analytics report immediately and return the generated run plus aggregated analytics data.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "id": {
          "type": "string",
          "description": "Compatibility alias for reportId."
        },
        "team_id": {
          "type": "string",
          "description": "Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope."
        },
        "reportId": {
          "type": "string",
          "description": "Saved analytics report ID."
        }
      }
    }
    arguments 17 lines
  • create_scheduled_report auth-required never probed

    Create a recurring analytics report that's generated and delivered automatically.

    mcp-tool

    {
      "type": "object",
      "required": [
        "name",
        "reportType",
        "schedule"
      ],
      "properties": {
        "name": {
          "type": "string",
          "description": "Report name"
        },
        "schedule": {
          "enum": [
            "daily",
            "weekly",
            "monthly"
          ],
          "type": "string",
          "description": "Report frequency"
        },
        "platforms": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Platforms to include"
        },
        "reportType": {
          "enum": [
            "performance_overview",
            "channel_comparison",
            "content_analysis",
            "ad_performance",
            "attribution",
            "executive_summary"
          ],
          "type": "string",
          "description": "Report type"
        },
        "deliveryMethod": {
          "enum": [
            "email",
            "slack",
            "webhook"
          ],
          "type": "string",
          "description": "How to deliver the report"
        },
        "deliveryTarget": {
          "type": "string",
          "description": "Email address, Slack channel, or webhook URL"
        }
      }
    }
    arguments 55 lines
  • reply_to_conversation auth-required never probed

    Send a reply in a conversation. The reply is sent through the original channel (e.g., Instagram comment, X reply, Facebook comment, etc.). Replies require conversation reply routing metadata (credential + operation). Provide "routing" once and it will be stored on the conversation for future replies. Use the Inbox Reply agent to get AI-drafted replies with brand voice.

    mcp-tool

    {
      "type": "object",
      "required": [
        "conversationId",
        "content"
      ],
      "properties": {
        "content": {
          "type": "string",
          "description": "Reply text"
        },
        "routing": {
          "type": "object",
          "required": [
            "credentialId",
            "operation"
          ],
          "properties": {
            "baseInput": {
              "type": "object",
              "description": "Static input merged into every reply (e.g. channel/thread identifiers)",
              "additionalProperties": true
            },
            "operation": {
              "type": "string",
              "description": "Connector operation name to execute (e.g. send_message)"
            },
            "connectorId": {
              "type": "string",
              "description": "Optional: connector ID for validation"
            },
            "credentialId": {
              "type": "string",
              "description": "connector_credentials.id to execute with"
            }
          },
          "description": "Optional: set conversation reply routing (persisted on conversations.metadata.replyRouting). Use this when the conversation doesn't yet have reply routing configured.",
          "additionalProperties": true
        },
        "mediaUrls": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Media to attach (optional)"
        },
        "conversationId": {
          "type": "string",
          "description": "Conversation ID"
        }
      }
    }
    arguments 52 lines
  • get_inbox_summary auth-required never probed

    Get a summary of the unified inbox: total conversations, unread count, sentiment breakdown, and response time metrics.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "timeRange": {
          "enum": [
            "24h",
            "7d",
            "30d"
          ],
          "type": "string",
          "description": "Time range for summary metrics"
        }
      }
    }
    arguments 14 lines
  • autopilot_set_goal auth-required never probed

    Set a social media goal for the AI autopilot to work toward. The autopilot will use AI agents to plan content, generate posts, and schedule them. Example goals: 'Grow LinkedIn followers by 20%', 'Post 5x/week on Instagram about AI'.

    mcp-tool

    {
      "type": "object",
      "required": [
        "goalText",
        "platforms"
      ],
      "properties": {
        "goalText": {
          "type": "string",
          "description": "The social media goal to achieve"
        },
        "platforms": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Target platforms (e.g. ['twitter', 'linkedin', 'instagram'])"
        },
        "durationWeeks": {
          "type": "number",
          "description": "How many weeks to run the autopilot (1-52, default 4)"
        },
        "targetMetrics": {
          "type": "object",
          "description": "Target metrics (e.g. { followers: 1000, engagement_rate: 0.05 })",
          "additionalProperties": true
        }
      }
    }
    arguments 29 lines
  • autopilot_generate_plan auth-required never probed

    Generate a weekly content plan for an autopilot goal. Chains 5 AI agents: Strategy Planner -> Content Ideation -> Calendar Optimizer -> Multi-Format Composer -> Variant Repurposer. Returns a plan with individual post items for review.

    mcp-tool

    {
      "type": "object",
      "required": [
        "goalId"
      ],
      "properties": {
        "goalId": {
          "type": "string",
          "description": "The autopilot goal ID to generate a plan for"
        },
        "weekNumber": {
          "type": "number",
          "description": "Specific week number to generate (optional, auto-increments)"
        }
      }
    }
    arguments 16 lines
  • autopilot_get_progress auth-required never probed

    Get progress metrics for an autopilot goal — weeks planned, posts approved, scheduled, published.

    mcp-tool

    {
      "type": "object",
      "required": [
        "goalId"
      ],
      "properties": {
        "goalId": {
          "type": "string",
          "description": "Goal ID to check progress for"
        }
      }
    }
    arguments 12 lines
  • list_projects auth-required never probed

    List imported product/codebase projects for social strategy and content generation.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "limit": {
          "type": "number",
          "maximum": 100,
          "minimum": 1
        },
        "search": {
          "type": "string"
        },
        "status": {
          "enum": [
            "draft",
            "importing",
            "analyzing",
            "ready",
            "failed",
            "archived"
          ],
          "type": "string"
        },
        "team_id": {
          "type": "string",
          "description": "Optional team ID or slug. Ignored when using a team-scoped API key."
        }
      }
    }
    arguments 28 lines
  • edit_scheduled_post auth-required never probed

    Edit a pending scheduled post. Supports text, media, platform, timing, approval-scope, and publish-now updates.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "id": {
          "type": "string",
          "description": "Compatibility alias for postId."
        },
        "text": {
          "type": "string",
          "description": "Updated post text."
        },
        "postId": {
          "type": "string",
          "description": "Scheduled post ID."
        },
        "team_id": {
          "type": "string",
          "description": "Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope."
        },
        "mediaUrl": {
          "type": "string",
          "description": "Replacement public HTTPS media URL, or an empty value to remove media."
        },
        "timezone": {
          "type": "string",
          "description": "Optional IANA timezone for the updated schedule."
        },
        "mediaUrls": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Replacement public HTTPS media URLs."
        },
        "platforms": {
          "type": "array",
          "items": {
            "enum": [
              "x",
              "linkedin",
              "linkedin-page",
              "facebook",
              "instagram",
              "threads",
              "bluesky",
              "mastodon",
              "nostr",
              "youtube",
              "tiktok",
              "lemmy",
              "discord",
              "slack",
              "telegram",
              "pinterest",
              "dribbble",
              "devto",
              "hashnode",
              "gmb",
              "whop",
              "producthunt"
            ],
            "type": "string"
          },
          "description": "Optional replacement platform list."
        },
        "applyScope": {
          "enum": [
            "single",
            "this_and_future"
          ],
          "type": "string",
          "description": "Whether to apply the edit to only this post or this and future occurrences."
        },
        "publishNow": {
          "type": "boolean",
          "description": "If true, publish immediately after applying the edit."
        },
        "scheduleId": {
          "type": "string",
          "description": "Compatibility alias for postId."
        },
        "scheduledAt": {
          "type": "string",
          "format": "date-time",
          "description": "Compatibility alias for scheduledTime."
        },
        "firstComment": {
          "type": "string",
          "description": "Optional replacement Instagram first comment."
        },
        "scheduledTime": {
          "type": "string",
          "format": "date-time",
          "description": "Updated ISO 8601 scheduled publish time."
        },
        "pinterestBoardId": {
          "type": "string",
          "description": "Optional replacement Pinterest board ID."
        }
      }
    }
    arguments 101 lines
  • retry_scheduled_post auth-required never probed

    Retry a failed scheduled post, optionally editing the content, narrowing to failed platforms, rescheduling, or publishing immediately.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "id": {
          "type": "string",
          "description": "Compatibility alias for postId."
        },
        "text": {
          "type": "string",
          "description": "Replacement post text for the retry."
        },
        "postId": {
          "type": "string",
          "description": "Scheduled post ID."
        },
        "team_id": {
          "type": "string",
          "description": "Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope."
        },
        "mediaUrl": {
          "type": "string",
          "description": "Replacement public HTTPS media URL for the retry."
        },
        "mediaUrls": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Replacement public HTTPS media URLs for the retry."
        },
        "platforms": {
          "type": "array",
          "items": {
            "enum": [
              "x",
              "linkedin",
              "linkedin-page",
              "facebook",
              "instagram",
              "threads",
              "bluesky",
              "mastodon",
              "nostr",
              "youtube",
              "tiktok",
              "lemmy",
              "discord",
              "slack",
              "telegram",
              "pinterest",
              "dribbble",
              "devto",
              "hashnode",
              "gmb",
              "whop",
              "producthunt"
            ],
            "type": "string"
          },
          "description": "Optional subset of failed platforms to retry."
        },
        "publishNow": {
          "type": "boolean",
          "description": "Publish the retry immediately instead of scheduling it."
        },
        "scheduleId": {
          "type": "string",
          "description": "Compatibility alias for postId."
        },
        "scheduledAt": {
          "type": "string",
          "format": "date-time",
          "description": "New ISO 8601 retry time. Required unless publishNow is true."
        },
        "firstComment": {
          "type": "string",
          "description": "Optional replacement Instagram first comment."
        },
        "pinterestBoardId": {
          "type": "string",
          "description": "Optional replacement Pinterest board ID."
        }
      }
    }
    arguments 84 lines
  • duplicate_scheduled_post auth-required never probed

    Create a new scheduled post by duplicating an existing scheduled post. If no time is supplied, SendIt shifts it forward automatically.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "id": {
          "type": "string",
          "description": "Compatibility alias for postId."
        },
        "postId": {
          "type": "string",
          "description": "Scheduled post ID."
        },
        "team_id": {
          "type": "string",
          "description": "Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope."
        },
        "scheduleId": {
          "type": "string",
          "description": "Compatibility alias for postId."
        },
        "scheduledAt": {
          "type": "string",
          "format": "date-time",
          "description": "Optional ISO 8601 time for the duplicated post."
        }
      }
    }
    arguments 26 lines
  • suggest_next_schedule_time auth-required never probed

    Suggest the next recommended publish time using best-times insights or configured queue slots without creating a post.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "mode": {
          "enum": [
            "best_time",
            "queue"
          ],
          "type": "string",
          "description": "Use 'best_time' for analytics-based suggestions or 'queue' for queue-slot suggestions."
        },
        "after": {
          "type": "string",
          "format": "date-time",
          "description": "Optional lower bound. Suggestions should be strictly after this time."
        },
        "team_id": {
          "type": "string",
          "description": "Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope."
        },
        "platform": {
          "type": "string",
          "description": "Single platform to optimize for."
        },
        "timezone": {
          "type": "string",
          "description": "Optional IANA timezone for the returned recommendation."
        },
        "mediaType": {
          "enum": [
            "text",
            "image",
            "carousel",
            "video",
            "story"
          ],
          "type": "string",
          "description": "Optional content media type hint for best-time recommendations."
        },
        "platforms": {
          "type": "array",
          "items": {
            "enum": [
              "x",
              "linkedin",
              "linkedin-page",
              "facebook",
              "instagram",
              "threads",
              "bluesky",
              "mastodon",
              "nostr",
              "youtube",
              "tiktok",
              "lemmy",
              "discord",
              "slack",
              "telegram",
              "pinterest",
              "dribbble",
              "devto",
              "hashnode",
              "gmb",
              "whop",
              "producthunt"
            ],
            "type": "string"
          },
          "description": "Optional platform set to optimize across."
        }
      }
    }
    arguments 72 lines
  • schedule_multilang_content auth-required never probed

    Schedule the same post in multiple languages, linking all variants into one translation group.

    mcp-tool

    {
      "type": "object",
      "required": [
        "versions",
        "scheduledAt"
      ],
      "properties": {
        "title": {
          "type": "string",
          "description": "Optional shared title for supported platforms."
        },
        "team_id": {
          "type": "string",
          "description": "Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope."
        },
        "mediaUrl": {
          "type": "string",
          "description": "Optional shared public HTTPS media URL."
        },
        "timezone": {
          "type": "string",
          "description": "Optional IANA timezone stored with the scheduled posts."
        },
        "versions": {
          "type": "array",
          "items": {
            "type": "object",
            "required": [
              "lang",
              "text",
              "targetAccounts"
            ],
            "properties": {
              "lang": {
                "type": "string",
                "description": "Language code such as en, es, fr, or de."
              },
              "text": {
                "type": "string",
                "description": "Localized post text for this version."
              },
              "targetAccounts": {
                "type": "array",
                "items": {
                  "type": "string"
                },
                "description": "Connected account IDs for this language version."
              }
            }
          },
          "description": "Language-specific post variants. Maximum 11 versions per request."
        },
        "mediaType": {
          "enum": [
            "image",
            "video",
            "auto"
          ],
          "type": "string",
          "description": "Optional shared media type hint."
        },
        "mediaUrls": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Optional shared public HTTPS media URLs."
        },
        "scheduledAt": {
          "type": "string",
          "format": "date-time",
          "description": "Future ISO 8601 publish time for every language version."
        }
      }
    }
    arguments 75 lines
  • list_calendar_events auth-required never probed

    List scheduled and published calendar events with optional date-range, status, platform, and pagination filters.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "end": {
          "type": "string",
          "description": "Optional range end. ISO 8601 date or date-time."
        },
        "limit": {
          "type": "number",
          "maximum": 200,
          "minimum": 1,
          "description": "Maximum number of results to return."
        },
        "start": {
          "type": "string",
          "description": "Optional range start. ISO 8601 date or date-time."
        },
        "cursor": {
          "type": "string",
          "description": "Opaque pagination cursor from a previous response."
        },
        "status": {
          "enum": [
            "draft",
            "scheduled",
            "queued",
            "pending",
            "publishing",
            "draft_delivered",
            "published",
            "failed",
            "cancelled"
          ],
          "type": "string",
          "description": "Optional event status filter."
        },
        "team_id": {
          "type": "string",
          "description": "Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope."
        },
        "upcoming": {
          "type": "boolean",
          "description": "If true, return only upcoming events."
        },
        "platforms": {
          "type": "array",
          "items": {
            "enum": [
              "x",
              "linkedin",
              "linkedin-page",
              "facebook",
              "instagram",
              "threads",
              "bluesky",
              "mastodon",
              "nostr",
              "youtube",
              "tiktok",
              "lemmy",
              "discord",
              "slack",
              "telegram",
              "pinterest",
              "dribbble",
              "devto",
              "hashnode",
              "gmb",
              "whop",
              "producthunt"
            ],
            "type": "string"
          },
          "description": "Optional platform filter."
        }
      }
    }
    arguments 77 lines
  • update_calendar_event auth-required never probed

    Update one calendar event by rescheduling it, changing status, reassigning it, or storing metadata.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "id": {
          "type": "string",
          "description": "Compatibility alias for eventId."
        },
        "postId": {
          "type": "string",
          "description": "Compatibility alias when the calendar event maps directly to a scheduled post."
        },
        "status": {
          "enum": [
            "draft",
            "scheduled",
            "queued",
            "pending",
            "publishing",
            "draft_delivered",
            "published",
            "failed",
            "cancelled"
          ],
          "type": "string",
          "description": "Updated event status."
        },
        "eventId": {
          "type": "string",
          "description": "Calendar event ID or backing scheduled post ID."
        },
        "team_id": {
          "type": "string",
          "description": "Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope."
        },
        "metadata": {
          "type": "object",
          "description": "Optional event metadata patch.",
          "additionalProperties": true
        },
        "assigneeId": {
          "type": "string",
          "description": "Optional assignee user ID."
        },
        "scheduledAt": {
          "type": "string",
          "format": "date-time",
          "description": "Updated ISO 8601 schedule time for the event."
        }
      }
    }
    arguments 50 lines
  • bulk_update_calendar_events auth-required never probed

    Apply one bulk action to many calendar events at once, including shifts, explicit reschedules, queue moves, cancellations, or assignments.

    mcp-tool

    {
      "type": "object",
      "required": [
        "ids",
        "action"
      ],
      "properties": {
        "ids": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "maxItems": 200,
          "minItems": 1,
          "description": "Calendar event IDs or scheduled post IDs to update."
        },
        "shift": {
          "type": "object",
          "required": [
            "amount",
            "unit"
          ],
          "properties": {
            "unit": {
              "enum": [
                "minutes",
                "hours",
                "days"
              ],
              "type": "string",
              "description": "Shift unit."
            },
            "amount": {
              "type": "number",
              "description": "Shift magnitude."
            }
          }
        },
        "action": {
          "enum": [
            "shift",
            "set_time",
            "move_to_queue",
            "cancel",
            "assign"
          ],
          "type": "string",
          "description": "Bulk action to apply."
        },
        "team_id": {
          "type": "string",
          "description": "Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope."
        },
        "timezone": {
          "type": "string",
          "description": "Optional IANA timezone for queue-based moves."
        },
        "applyScope": {
          "enum": [
            "single",
            "recurrence_group"
          ],
          "type": "string",
          "description": "Whether to affect only the selected IDs or their recurrence groups."
        },
        "assigneeId": {
          "type": "string",
          "description": "Required for the 'assign' action."
        },
        "scheduledAt": {
          "type": "string",
          "format": "date-time",
          "description": "Replacement ISO 8601 time for the 'set_time' action."
        },
        "deltaMinutes": {
          "type": "number",
          "description": "Compatibility shift amount in minutes."
        },
        "scheduledTime": {
          "type": "string",
          "format": "date-time",
          "description": "Compatibility alias for scheduledAt."
        }
      }
    }
    arguments 85 lines
  • list_recurring_series auth-required never probed

    List recurring scheduled-post series and their recurrence metadata.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "limit": {
          "type": "number",
          "maximum": 100,
          "minimum": 1,
          "description": "Maximum number of results to return."
        },
        "cursor": {
          "type": "string",
          "description": "Opaque pagination cursor from a previous response."
        },
        "team_id": {
          "type": "string",
          "description": "Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope."
        }
      }
    }
    arguments 19 lines
  • update_recurring_series auth-required never probed

    Update the recurrence rule or end date for future occurrences in a recurring series.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "id": {
          "type": "string",
          "description": "Compatibility alias for seriesId."
        },
        "team_id": {
          "type": "string",
          "description": "Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope."
        },
        "seriesId": {
          "type": "string",
          "description": "Recurring series parent scheduled post ID."
        },
        "recurrenceRule": {
          "type": "string",
          "description": "Replacement RRULE string."
        },
        "recurrenceEndDate": {
          "type": "string",
          "format": "date-time",
          "description": "Replacement ISO 8601 end date for the series."
        }
      }
    }
    arguments 26 lines
  • cancel_recurring_series auth-required never probed

    Cancel a recurring series and stop future pending occurrences from publishing.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "id": {
          "type": "string",
          "description": "Compatibility alias for seriesId."
        },
        "team_id": {
          "type": "string",
          "description": "Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope."
        },
        "seriesId": {
          "type": "string",
          "description": "Recurring series parent scheduled post ID."
        }
      }
    }
    arguments 17 lines
  • list_media_assets auth-required never probed

    List media library assets with filtering by collection, type, tags, search, and pagination.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "kind": {
          "enum": [
            "image",
            "video"
          ],
          "type": "string",
          "description": "Optional broad media kind filter."
        },
        "tags": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Optional tag filter. Assets matching any supplied tag may be returned."
        },
        "limit": {
          "type": "number",
          "maximum": 200,
          "minimum": 1,
          "description": "Maximum number of results to return."
        },
        "cursor": {
          "type": "string",
          "description": "Opaque pagination cursor from a previous response."
        },
        "search": {
          "type": "string",
          "description": "Optional filename search query."
        },
        "team_id": {
          "type": "string",
          "description": "Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope."
        },
        "mimeType": {
          "type": "string",
          "description": "Optional exact MIME type filter such as image/png or video/mp4."
        },
        "collection": {
          "type": "string",
          "description": "Optional collection name filter."
        }
      }
    }
    arguments 46 lines
_ try it through the hub, ceiling 0

This deployment has no calling key, so nothing can be run from here. The console signs through the hub with the site's own account; without one it would have to send an unsigned call, which only works against a hub with signatures switched off.

_ for your README measured, not declared

measured by brick.blue

[![measured by brick.blue](https://brick.blue/api/v1/agents/47114e9d8fcb72cc/badge.svg)](https://brick.blue/agent/47114e9d8fcb72cc)

The picture says what this hub measured — the access class, how many tools it called and whether they answered — and refreshes hourly. Own the domain? Prove it and the listing carries a verified badge here too: passport.

_ how we know
card completeness
100%

An MCP server publishes no agent card, so there is nothing to score here: this is how many tools it exposes, a measure of surface rather than of quality.

spec deviations
0

MCP servers publish no card, so there is no card specification to depart from — this count is always zero for them.

_ record

Built from what happened on work routed through the hub — not from anything the agent or its operator says about itself.

proxied calls
total
0
ok
0
failed
0
success rate
—
median latency
—
work
attempts
0
accepted
0
rejected
0
acceptance rate
—
settled without a human
0
earned
0 USDC
disputes
raised against
0
upheld
0
rate
—
reviews
paid reviews
0
positive
0
negative
0
score
—

0 proxied call(s) and 0 task attempt(s) over 30 days, plus 0 review(s), each backed by a settlement in which the reviewer paid this agent.