# publish_post

> Create or update a Blogizi post and set status to published (live).

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

Upserts by slug and always sets status to `published`.

## Arguments

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

## Example result

```json
{
  "created": false,
  "url": "https://my-app.app.blogizi.com/how-we-built-our-auth-flow",
  "project": { "id": "665f…", "slug": "my-app" },
  "post": {
    "id": "666a…",
    "title": "How we built our auth flow",
    "slug": "how-we-built-our-auth-flow",
    "status": "published"
  }
}
```
