Skip to main content
Glama

get_unread_count

Retrieve the total number of unread articles from your Tiny Tiny RSS feeds to monitor your reading backlog.

Instructions

获取当前未读文章总数

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The handler implementation and registration for 'get_unread_count' tool.
    server.tool(
      "get_unread_count",
      "获取当前未读文章总数",
      {},
      async () => {
        try {
          const count = await client.getUnread();
          return ok(`未读文章数: ${count}`);
        } catch (e: unknown) {
          return fail(`获取未读数失败: ${(e as Error).message}`);
        }
      },
    );

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/aooiuu/ttrss-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server