strapi_create_blog_post
Create new blog posts in Strapi CMS with markdown content, author assignment, and category/tag organization.
Instructions
Create a new blog post in Strapi CMS with markdown content
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | Blog post title | |
| content | Yes | Blog post content in MARKDOWN format | |
| description | No | Short description/excerpt | |
| author_id | Yes | Author ID (use strapi_list_authors to find) | |
| category_id | No | Category ID (use strapi_list_categories) | |
| tag_ids | No | Array of tag IDs (use strapi_list_tags) | |
| publishedAt | No | Publication date (ISO 8601) or null for draft |