WordPress MCP Server

delete-user

Remove a WordPress user and reassign their posts to another user using the WordPress MCP Server. Requires site URL, username, password, user ID, and reassign ID for secure management.

Instructions

Delete a WordPress user

Input Schema

NameRequiredDescriptionDefault
passwordYesWordPress application password
reassignIdYesID of the user to reassign posts to
siteUrlYesWordPress site URL
userIdYesUser ID or 'me' for current user
usernameYesWordPress username

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "password": { "description": "WordPress application password", "type": "string" }, "reassignId": { "description": "ID of the user to reassign posts to", "type": "number" }, "siteUrl": { "description": "WordPress site URL", "format": "uri", "type": "string" }, "userId": { "anyOf": [ { "type": "string" }, { "type": "number" }, { "const": "me", "type": "string" } ], "description": "User ID or 'me' for current user" }, "username": { "description": "WordPress username", "type": "string" } }, "required": [ "siteUrl", "username", "password", "userId", "reassignId" ], "type": "object" }
ID: 4g84e42ylk