MCP tools

validate_postread only

Validate a post

Dry-runs the same checks as create_post without writing anything. Use it before creating a post you are unsure about.

Category
Posts
Calls
POST/v1/posts/validate
Safe to auto-approve
Yes. It only reads data.

Parameters

profileIdstringoptional

Profile to act on. Omit to use the profile this API key belongs to. Call list_profiles first when managing several customers.

contentstringoptional

Post text or caption.

object[]optional

Images or a video. Upload with upload_media first.

accountIdsstring[]optional

Account `id` values from list_accounts.

scheduledAtstringoptional

ISO 8601 datetime to publish at, for example 2026-08-01T12:00:00Z.

publishNowbooleanoptional

Publish immediately. Omit together with scheduledAt to save a draft.

platformsobjectoptional

Per-platform options keyed by platform name.

Example

A tool call as an MCP client would send it.

{
  "name": "validate_post",
  "arguments": {
    "content": "Shipping today.",
    "accountIds": [
      "string"
    ]
  }
}