Back to tools

create_article

Create a new article. Slug auto-generated from title. Defaults to draft.

Schema and Policy
{
  "name": "create_article",
  "description": "Create a new article. Slug auto-generated from title. Defaults to draft.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "title": {
        "type": "string",
        "description": "Article title"
      },
      "content": {
        "type": "string",
        "description": "Article body (markdown)"
      },
      "excerpt": {
        "type": "string",
        "description": "Short excerpt"
      },
      "author": {
        "type": "string",
        "description": "Author name"
      },
      "category": {
        "type": "string",
        "description": "Category slug"
      },
      "tags": {
        "type": "array",
        "items": {
          "type": "string"
        }
      },
      "status": {
        "type": "string",
        "enum": [
          "draft",
          "published"
        ]
      }
    },
    "required": [
      "title",
      "content",
      "excerpt",
      "author",
      "category"
    ]
  },
  "category": "Content",
  "authRequired": true,
  "mutability": "write",
  "status": "auth_required"
}