Skip to main content
Glama

MCP RSS

by ronnycoding
Article.ts•808 B
import { Entity, PrimaryGeneratedColumn, Column, ManyToOne } from 'typeorm'; import { Feed } from './Feed'; export enum ArticleStatus { UNREAD = 'unread', READ = 'read', FAVORITE = 'favorite', ARCHIVED = 'archived' } @Entity() export class Article { @PrimaryGeneratedColumn() id!: number; @Column() title!: string; @Column('text') content!: string; @Column() link!: string; @Column({ type: 'timestamp' }) pubDate!: Date; @Column({ type: 'timestamp', default: () => 'CURRENT_TIMESTAMP' }) fetchDate!: Date; @Column({ type: 'enum', enum: ArticleStatus, default: ArticleStatus.UNREAD }) status!: ArticleStatus; @Column({ type: 'text', nullable: true }) embedding?: string; @ManyToOne(() => Feed, feed => feed.articles) feed!: Feed; }

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/ronnycoding/my_mcp_rss'

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