MCP 도구 목록
create_post
섹션 제목: “create_post”Create and publish a new blog post.
| Parameter | Type | Required | Description |
|---|---|---|---|
title | string | Yes | Post title |
content | string | Yes | Markdown content |
slug | string | No | URL slug (auto-generated) |
tags | string[] | No | Tags (max 10) |
status | "draft" | "published" | No | Default: "published" |
update_post
섹션 제목: “update_post”Update an existing post.
| Parameter | Type | Required | Description |
|---|---|---|---|
slug | string | Yes | Post slug to update |
title | string | No | New title |
content | string | No | New content |
tags | string[] | No | New tags |
list_posts
섹션 제목: “list_posts”List posts with optional filters.
| Parameter | Type | Required | Description |
|---|---|---|---|
status | string | No | Filter: draft, published, scheduled |
tag | string | No | Filter by tag |
page | number | No | Page number |
per_page | number | No | Items per page |
get_post
섹션 제목: “get_post”Get a single post including full Markdown content.
| Parameter | Type | Required | Description |
|---|---|---|---|
slug | string | Yes | Post slug |
delete_post
섹션 제목: “delete_post”Permanently delete a post.
| Parameter | Type | Required | Description |
|---|---|---|---|
slug | string | Yes | Post slug |
schedule_post
섹션 제목: “schedule_post”Schedule a post for future publication (Creator+ only).
| Parameter | Type | Required | Description |
|---|---|---|---|
slug | string | Yes | Post slug |
scheduled_at | string | Yes | ISO 8601 datetime |