{
  "info": {
    "name": "WoopSocial — mcp.ai",
    "description": "REST API for the WoopSocial MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/woop_social",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "woop_social_create_draft_post",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/draft/post",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "draft",
            "post"
          ]
        },
        "description": "Save a post as a WoopSocial draft without publishing it externally. TikTok MEDIA_UPLOAD targets require human completion in TikTok if publication is later initiated. If enabled, media cleanup may perm",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"content\": \"\",\n  \"social_accounts\": \"\",\n  \"auto_delete_media_after_publish\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "woop_social_create_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "project"
          ]
        },
        "description": "Create a WoopSocial project in the API key's organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "woop_social_delete_media",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/media",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "media"
          ]
        },
        "description": "Permanently delete one WoopSocial media-library item by its exact, explicitly supplied media ID. This operation cannot be undone. Never infer, guess, or automatically select the media ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"media_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "woop_social_delete_post",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/post",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "post"
          ]
        },
        "description": "Permanently delete a parent post by its exact ID. Deletion is allowed only while every social-account delivery is still NOT_STARTED; any delivery in another state causes a conflict and the post is not",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"post_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "woop_social_delete_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "project"
          ]
        },
        "description": "Permanently delete a WoopSocial project by an exact, explicitly supplied project ID. This irreversible cascading deletion also permanently deletes the project's social accounts, OAuth grants, media re",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "woop_social_delete_social_account",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/social/account",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "social",
            "account"
          ]
        },
        "description": "Permanently remove a connected social account from WoopSocial using its exact ID. This irreversible operation disconnects the account and revokes and deletes its stored OAuth grant and tokens. The con",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"social_account_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "woop_social_delete_social_account_post",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/social/account/post",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "social",
            "account",
            "post"
          ]
        },
        "description": "Permanently delete one social-account-specific post delivery using its exact delivery ID. The ID is distinct from the parent post ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"social_account_post_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "woop_social_delete_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "webhook"
          ]
        },
        "description": "Permanently delete one WoopSocial webhook endpoint using its exact, explicitly supplied webhook ID. This operation cannot be undone. Never infer, guess, or automatically select the webhook ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"webhook_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "woop_social_get_post",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/post",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "post"
          ]
        },
        "description": "Get a parent post and its per-social-account delivery records by post ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"post_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "woop_social_get_social_account_platform_inputs",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/social/account/platform/inputs",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "social",
            "account",
            "platform",
            "inputs"
          ]
        },
        "description": "Get dynamic Pinterest board choices or TikTok posting-policy options for a connected social account before constructing a post target.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"social_account_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "woop_social_list_media",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/media",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "media"
          ]
        },
        "description": "List one page of WoopSocial media-library items, optionally filtered by project or exact media IDs.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"media_ids\": \"\",\n  \"project_id\": \"\",\n  \"next_cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "woop_social_list_projects",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/projects",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "projects"
          ]
        },
        "description": "List all projects accessible to the connected WoopSocial API key.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "woop_social_list_social_account_posts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/social/account/posts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "social",
            "account",
            "posts"
          ]
        },
        "description": "List one page of per-account post deliveries, optionally filtered by projects, social accounts, parent posts, platforms, or delivery statuses.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"post_ids\": \"\",\n  \"platforms\": \"\",\n  \"next_cursor\": \"\",\n  \"project_ids\": \"\",\n  \"delivery_statuses\": \"\",\n  \"social_account_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "woop_social_list_social_accounts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/social/accounts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "social",
            "accounts"
          ]
        },
        "description": "List connected social accounts available for publishing, optionally within one project.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "woop_social_list_webhooks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/webhooks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "webhooks"
          ]
        },
        "description": "List registered WoopSocial webhook endpoints and their subscribed events. Signing secrets are not returned and cannot be recovered with this tool.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "woop_social_publish_post_now",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/publish/post/now",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "publish",
            "post",
            "now"
          ]
        },
        "description": "Publish a post to external social platforms now; external publication is an irreversible action. TikTok MEDIA_UPLOAD requires a human to finish publication in TikTok instead of completing direct publi",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"content\": \"\",\n  \"social_accounts\": \"\",\n  \"auto_delete_media_after_publish\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "woop_social_register_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/register/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "register",
            "webhook"
          ]
        },
        "description": "Register a public HTTPS endpoint for WoopSocial publishing-success and/or publishing-failure events. The response contains a sensitive signing secret exactly once; capture and store it securely becaus",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"event_types\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "woop_social_schedule_post",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/schedule/post",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "schedule",
            "post"
          ]
        },
        "description": "Schedule automatic future publication to external social platforms; that future publication is irreversible. TikTok MEDIA_UPLOAD still requires a human to finish publication in TikTok. If enabled, med",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"content\": \"\",\n  \"scheduled_for\": \"\",\n  \"social_accounts\": \"\",\n  \"auto_delete_media_after_publish\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "woop_social_upload_media",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/upload/media",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "upload",
            "media"
          ]
        },
        "description": "Upload one image or video of at most 100 MB into a WoopSocial project using the atomic multipart endpoint.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file\": {},\n  \"project_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "woop_social_validate_post",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/validate/post",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "validate",
            "post"
          ]
        },
        "description": "Validate a proposed WoopSocial post without creating it. Returns blocking errors and non-blocking warnings for the complete multi-platform request.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"content\": \"\",\n  \"schedule\": {},\n  \"social_accounts\": \"\",\n  \"auto_delete_media_after_publish\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}