30 days free. No credit card. Full access from the moment you connect your site.

Start free trial

List Term SEO

taxonomies/list-term-seo returns a page of terms in one taxonomy with their Yoast SEO data.

It exists so that finding the terms without a description does not mean a call per term.

At a glance

Abilitytaxonomies/list-term-seo
ToolsetYoast SEO — toolset/yoast-seo
GroupYoast SEO › Term SEO
RequiresYoast SEO, active on the site
Capabilitymanage_options
SafetyRead-only — changes nothing
RepeatableIdempotent — running it twice leaves the same result
Ships inAcrossAI Abilities Manager 0.0.34 and later

How it works

Term archives are a large part of most sites’ indexed pages and a routinely neglected one. A blog with forty categories has forty archive pages, and on most sites none of them has a description.

Those pages then take their meta description from the taxonomy template, which produces forty pages with near-identical descriptions — a pattern search engines handle by ignoring most of them.

Listing the terms with their SEO data makes the gap visible in one call, which is what turns “we should write category descriptions” into a specific list of which ones.

Yoast stores term SEO in a single wpseo_taxonomy_meta option keyed by taxonomy and term, not in term meta. Anything reading term meta finds nothing, and anything writing term meta is writing somewhere Yoast never looks.

Paging with limit and offset, because a large taxonomy can have thousands of terms.

Input

NameTypeRequiredWhat it is
taxonomystringYesThe taxonomy.
limitintegerNoHow many terms to return.
offsetintegerNoWhere to start.

What comes back

NameTypeWhat it is
termsarrayEach term with its Yoast SEO fields.
totalintegerHow many terms the taxonomy has.
successbooleanWhether the call completed.
messagestringA one-line summary of what happened, suitable for showing a human.
error_codestringPresent only on failure — a stable machine-readable reason, such as a missing field, a wrong field type or an unmet confirmation.

Example

Ask your assistant:

Which of our categories have no meta description?

It resolves to one call:

{
  "ability": "taxonomies/list-term-seo",
  "parameters": {
    "taxonomy": "category",
    "limit": 100
  }
}

Worth knowing

  • Term archives are often the largest neglected group of indexed pages on a site.
  • Terms with no description fall back to the taxonomy template, producing near-duplicates.
  • Paged — large taxonomies have thousands of terms.
  • Read-only.

Related abilities


Get the plugins:
AcrossAI Abilities Manager · AcrossAI MCP Manager

Browse the rest: Every ability, by category


Keep reading