list_publications
Retrieve a list of publications for a specific project, with optional filters for date and status.
Parameters
project_id(integer, required): Project ID.post_date(string, optional): Publication date inYYYY-MM-DDformat.publication_status(string, optional): Comma-separated list of publication statuses:0: deleted1: published2: being published3: error4: draft5: waiting for publication6: not deleted due to error10: template11: workflow stage12: approval
sort(string, optional): Sorting criteria (e.g.,-id).page(integer, optional): Page number.per_page(integer, optional): Items per page.
Example Request
curl -X POST https://mcp.postmypost.io/v1/tools/call \
-H "Authorization: Bearer <your-api-token>" \
-H "Content-Type: application/json" \
-d '{
"name": "list_publications",
"arguments": {
"project_id": 123,
"publication_status": "1,5"
}
}'