Skip to main content
Glama
types.ts912 B
export type PaperSource = 'arxiv' | 'venue'; export interface SearchOptions { source: PaperSource; query: string; maxResults?: number; skip?: number; sort?: number; } export interface PaperSummary { id: string; source: PaperSource; rank: number; title: string; detailUrl: string; externalUrl: string; pdfUrl?: string; pdfStars?: number; kimiStars?: number; authors: string[]; abstract: string; subjects: string[]; publishTime?: string; relatedKeywords: string[]; } export interface SearchResult { source: PaperSource; query: string; total: number; papers: PaperSummary[]; } export interface DownloadOptions { source: PaperSource; paperId: string; downloadFolder: string; filename?: string; } export interface DownloadResult { pdfUrl: string; filePath: string; fileSize: number; } export interface KimiQA { question: string; answer: string; }

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/han-517/scholar-mcp'

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