list_starred_article_ids
Retrieve IDs of saved or starred articles from your FreshRSS feed reader for further management or processing.
Instructions
List starred/saved article IDs (Fever API)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/handlers/fever-handlers.ts:77-80 (handler)The handler logic for 'list_starred_article_ids' which fetches saved IDs from the Fever API client.
wrapTool('list_starred_article_ids', async () => { const ids = await client.fever.listSavedIds(); return textResult(ids.length === 0 ? 'No starred IDs.' : ids.join(',')); }) - src/handlers/fever-handlers.ts:71-81 (registration)Registration of the 'list_starred_article_ids' tool in the MCP server.
server.registerTool( 'list_starred_article_ids', { description: 'List starred/saved article IDs (Fever API)', inputSchema: listIdsSchema, }, wrapTool('list_starred_article_ids', async () => { const ids = await client.fever.listSavedIds(); return textResult(ids.length === 0 ? 'No starred IDs.' : ids.join(',')); }) );