WordPress MCP Server

update-category

Modify an existing WordPress category by updating its name, description, slug, parent ID, or meta fields. Requires site URL, credentials, and category ID for secure programmatic changes.

Instructions

Update an existing WordPress category

Input Schema

NameRequiredDescriptionDefault
categoryIdYesID of the category to update
descriptionNoNew HTML description of the term
metaNoNew meta fields
nameNoNew HTML title for the term
parentNoNew parent term ID
passwordYesWordPress application password
siteUrlYesWordPress site URL
slugNoNew alphanumeric identifier for the term
usernameYesWordPress username

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "categoryId": { "description": "ID of the category to update", "type": "number" }, "description": { "description": "New HTML description of the term", "type": "string" }, "meta": { "additionalProperties": {}, "description": "New meta fields", "type": "object" }, "name": { "description": "New HTML title for the term", "type": "string" }, "parent": { "description": "New parent term ID", "type": "number" }, "password": { "description": "WordPress application password", "type": "string" }, "siteUrl": { "description": "WordPress site URL", "format": "uri", "type": "string" }, "slug": { "description": "New alphanumeric identifier for the term", "type": "string" }, "username": { "description": "WordPress username", "type": "string" } }, "required": [ "siteUrl", "username", "password", "categoryId" ], "type": "object" }
ID: 4g84e42ylk