WordPress MCP Server

create-category

Add or manage WordPress categories programmatically by defining name, description, slug, and parent ID with secure API authentication for site organization.

Instructions

Create a new WordPress category

Input Schema

NameRequiredDescriptionDefault
descriptionNoHTML description of the term
metaNoMeta fields
nameYesHTML title for the term
parentNoThe parent term ID
passwordYesWordPress application password
siteUrlYesWordPress site URL
slugNoAn alphanumeric identifier for the term unique to its type
usernameYesWordPress username

Input Schema (JSON Schema)

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