Skip to main content
Glama

MCP RSS

by ronnycoding
Feed.ts•476 B
import { Entity, PrimaryGeneratedColumn, Column, OneToMany } from 'typeorm'; import { Article } from './Article'; @Entity() export class Feed { @PrimaryGeneratedColumn() id!: number; @Column() title!: string; @Column() url!: string; @Column() htmlUrl!: string; @Column() category!: string; @Column({ type: 'boolean', default: false }) isFavorite!: boolean; @OneToMany(() => Article, article => article.feed) articles!: Article[]; }

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