update_article
Update an existing article by ID. Only provided fields are changed.
Schema and Policy
{
"name": "update_article",
"description": "Update an existing article by ID. Only provided fields are changed.",
"inputSchema": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Article ID to update"
},
"title": {
"type": "string"
},
"content": {
"type": "string"
},
"excerpt": {
"type": "string"
},
"author": {
"type": "string"
},
"category": {
"type": "string"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"id"
]
},
"category": "Content",
"authRequired": true,
"mutability": "write",
"status": "auth_required"
}