Skip to main content
Glama
types.ts764 B
export interface Book { id: string; title: string; author: string; description: string; totalChapters: number; category: string; coverUrl?: string; } export interface BookChapter { bookId: string; chapterNumber: number; title: string; content: string; wordCount: number; } export interface Bookmark { id: string; bookId: string; chapterNumber: number; pageNumber: number; note?: string; createdAt: Date; } export interface ReadingProgress { bookId: string; currentChapter: number; currentPage: number; completedChapters: number[]; lastReadAt: Date; totalReadingTime: number; } export interface ReadingStats { totalBooks: number; completedBooks: number; totalReadingTime: number; currentStreak: number; }

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/mkafw/readbook-mcp'

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