Taxonomy Toolswordpress_create_term

wordpress_create_term

Create a new taxonomy term.

wordpress_create_term

Create a new term.

Parameters

5 parameters, 2 required.

NameTypeRequiredWhat it is
taxonomystringyesTaxonomy name
namestringyesTerm name
slugstringnoTerm slug
descriptionstringnoTerm description
parentnumbernoParent term ID

Example call

The smallest valid call, with the required parameters only:

{
  "name": "wordpress_create_term",
  "arguments": {
    "taxonomy": "value",
    "name": "Example title"
  }
}

Response

{
  "success": true,
  "taxonomy": "category",
  "id": 123,
  "name": "Announcements"
}

What it changes

It writes to the site. Respira takes a snapshot before the write, and the change can be undone from that snapshot for 90 days. Calling it twice does the work twice. On a connection set to read-only it is refused with respira_scope_denied.

How long it takes

A typical call takes about 2.3 seconds. 19 in 20 finish within 4.2 seconds. Measured on real sites over the last week, so it includes the site's own hosting.

Availability

Works on any WordPress site, whichever page builder it uses. Available since Respira 1.0.0.

Example Prompts

  • "Create a new category called 'Announcements'"
  • "Add a tag named 'wordpress-mcp'"