unstar_articles
Remove star markers from articles in FreshRSS to declutter your reading list and manage saved content.
Instructions
Remove star from one or more articles
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| articleIds | Yes | Article IDs to star/unstar |
Implementation Reference
- src/handlers/article-handlers.ts:72-82 (handler)The 'unstar_articles' tool is registered and implemented in this handler block, calling `client.articles.unstar`.
server.registerTool( 'unstar_articles', { description: 'Remove star from one or more articles', inputSchema: starArticlesSchema, }, wrapTool('unstar_articles', async (args: z.infer<typeof starArticlesSchema>) => { await client.articles.unstar(args.articleIds); return textResult(`Unstarred ${args.articleIds.length.toString()} article(s).`); }) );