Skip to main content

mr series list

List Series, optionally filtered by name or slug. The --name and --slug flags do substring matching on the server. Results are paginated via the global --page flag (default page size 50). Default output is a table with ID, NAME, SLUG, and CREATED columns; pass --json for the full array.

Usage

mr series list

Examples

List all series (first page)

mr series list

Filter by name substring

mr series list --name volume

JSON output piped into jq

mr series list --json | jq -r '.[].Name'

Flags

FlagTypeDefaultDescription
--namestring``Filter by name
--slugstring``Filter by slug

Inherited global flags

FlagTypeDefaultDescription
--jsonboolfalseOutput raw JSON
--no-headerboolfalseOmit table headers
--pageint1Page number for list commands (default page size: 50)
--quietboolfalseOnly output IDs
--serverstringhttp://localhost:8181mahresources server URL (env: MAHRESOURCES_URL)

Output

Array of Series objects with ID, Name, Slug, Meta, CreatedAt, UpdatedAt

Exit Codes

0 on success; 1 on any error

See Also