← Back to all apps

Enzo Reader for RSS

Entertainmentby Vegas Media Group
Launched Mar 29, 2026 on ChatGPT

Enzo Reader helps you keep up with your feeds and articles. You can catch up on your latest stories, filter by unread items, favorites, feeds, tags, or date ranges, search by what an article really says, open the full text when you want more detail, and quickly mark things read, unread, or saved. It turns a messy reading backlog into something organized, searchable, and easy to stay on top of.

10ChatGPT Tools
Vegas Media GroupDeveloper
EntertainmentCategory

Available Tools

Fetch Full Items

fetch_full_items
Full Description

Fetch full content of articles by UUIDs.

This returns full item content.

Use this when the user asks for:

  • specific article contents
  • summarizing an article or batch of articles

Sometimes the user may refer to them as 'feeds' or 'RSS feeds' instead of articles.

Parameters (1 required)
Required
uuidsarray

Fetch Items

fetch_items
Full Description

Fetch articles. Handles queries such as finding recent items, finding read or unread items, user-favorited items, items in a specific date range, items with a specific feed name, items that have specific tags, or combining date range with tags or feed names.

This returns item summaries, not full content. If you need full content, use fetch_full_items and pass in the UUIDs.

Data is fresh every 15 minutes - if a user asks for this again, re-fetch if more time has elapsed.

Use this when the user asks for:

  • the latest articles
  • a catch-up on their latest news
  • all unread or all read items
  • items that they have favorited or starred
  • items in a specific date range
  • items matching a specific feed name
  • items that have specific tags
  • items with specific tags in a specific date range
  • items from specific feeds in a specific date range

Do not use when:

  • The user is searching for items by content

Sometimes the user may refer to them as 'feeds' or 'RSS feeds' instead of articles

Parameters (0 required, 5 optional)
Optional
date_rangeobject
favorited_itemsboolean
feed_namesarray
include_read_itemsboolean

If not specified, default varies by fetch type.

tagsarray

Get Article List Status

get_article_list_status
Full Description

Get freshness and sync status for the article list widget.

Use this when the app needs to decide whether to refresh the currently visible article list.

Mark As Favorite

mark_as_favorite
Full Description

Set as favorite for the item matching the submitted IDs.

Parameters (1 required)
Required
uuidsarray

Mark As Read

mark_as_read
Full Description

Set as read for the item matching the submitted IDs.

Parameters (1 required)
Required
uuidsarray

Mark As Unfavorite

mark_as_unfavorite
Full Description

Remove favorite state for the item matching the submitted IDs.

Parameters (1 required)
Required
uuidsarray

Mark As Unread

mark_as_unread
Full Description

Set as unread for the item matching the submitted IDs.

Parameters (1 required)
Required
uuidsarray

Render Article List

render_article_list
Full Description

Render the article list widget from prepared article results.

Use this after fetch_items or search_by_content when you want to show the interactive article list widget.

Parameters (2 required)
Required
resultsarray
user_preferencesobject

Search By Content

search_by_content
Full Description

Show articles where the content matches the user's search query.

Use this when the user asks for:

  • Articles/items that match a freeform query

Do not use when:

  • The user wants an overall summary of what is new in the account without any other parameters
  • fetching all unread or all read items
  • fetching items in a specific date range
  • fetching items for specific UUIDs
  • fetching items matching a specific feed name
  • fetching items that have specific tags

Sometimes the user may refer to them as 'feeds' or 'RSS feeds' instead of articles

Parameters (1 required, 2 optional)
Required
querystring

Searches item contents with lexical matching first and vector fallback when helpful.

Optional
rerankboolean

If true, may run an additional model call to rerank the top results for longer queries. Defaults to false.

unread_onlyboolean

Determines if the results include read items. Defaults to including both read and unread items.

Set User Preferences

set_user_preferences
Full Description

Update user preferences.

Only use this when the user asks to:

  • Update their preferences
Parameters (5 required)
Required
confirm_on_mark_as_readboolean
mark_as_read_on_openboolean
mark_as_read_on_summarizeboolean
restrict_summarize_all_to_unreadboolean
show_markdown_detailsboolean