wp_get_taxonomies tool reference for StifLi Flex MCP
Read-onlylists registered taxonomies and returns `slug`, `name`, and `label` for each item.
Description
lists registered taxonomies and returns `slug`, `name`, and `label` for each item.
What it is for
- Discovering custom taxonomies.
- Preparing term operations.
Example use case
plugin schema discovery.
Sample prompt
List all registered taxonomies and include slug, name, and label so I can see which custom content structures are available.
Sample response
{
"tool": "wp_get_taxonomies",
"status": "ok",
"items": []
}
What does wp_get_taxonomies do?
lists registered taxonomies and returns `slug`, `name`, and `label` for each item.
Does wp_get_taxonomies modify site data?
No. It is a read-only operation and does not modify content or settings.
Which capability is commonly required?
It usually runs under controls compatible with manage_categories and the active MCP profile.
How should wp_get_taxonomies be used safely?
Limit scope with filters and pagination to reduce overexposure of data.
