content_browse_authors
Browse public authors from a Ghost blog to display on team pages or build author archives. Optionally include post counts. Returns only authors with published posts.
Instructions
Browse public authors from Ghost Content API (read-only).
USE CASE:
Display team/contributor page on website
Build author archive pages
Get post counts per author
INCLUDE OPTIONS:
count.posts: Include number of published posts per author
NOTE: Only authors with at least one published post are returned. For all staff users (including those without posts), use admin_browse_users instead.
RETURNS: Array of authors with bio, social links, and optional post counts.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| include | No | Related data to include: count.posts | |
| fields | No | Comma-separated list of fields to return | |
| filter | No | NQL filter expression (e.g., slug:john-doe) | |
| limit | No | Number of authors to return (default: 15, or "all") | |
| page | No | Page number for pagination | |
| order | No | Sort order (e.g., name ASC) |