Skip to main content
Glama

mcp-rss

by buhe
Article.ts615 B
import { Entity, PrimaryGeneratedColumn, Column, ManyToOne } from 'typeorm'; import { Feed } from './Feed'; export enum ArticleStatus { NORMAL = 'normal', FAVORITE = 'favorite' } @Entity() export class Article { @PrimaryGeneratedColumn() id!: number; @Column() title!: string; @Column('text') content!: string; @Column() link!: string; @Column() pubDate!: string; @Column() fetchDate!: string; @Column({ type: 'enum', enum: ArticleStatus, default: ArticleStatus.NORMAL }) status!: ArticleStatus; @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/buhe/mcp_rss'

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