# draft_post

> Create a new Blogizi post as a draft. Fails if the slug already exists.

HTML version: https://blogizi.com/docs/mcp-draft-post
Markdown version: https://blogizi.com/docs/mcp-draft-post.md

Creates a draft post. If the slug already exists, the tool errors — use [update_post](/docs/mcp-update-post) to revise.

## Arguments

- `title`, `slug` — required
- `description`, `keyword`, `content` — optional
- `projectSlug` — required when the account has more than one project

## Example

```json
{
  "title": "How we built our auth flow",
  "slug": "how-we-built-our-auth-flow",
  "description": "≤160 char meta description",
  "keyword": "indie app authentication",
  "content": "Markdown body…",
  "projectSlug": "my-app"
}
```
