systemprompt-mcp-reddit
Version:
A specialized Model Context Protocol (MCP) server that enables you to search, read, and interact with Reddit content, leveraging an AI Agent to help with each operation.
9 lines (8 loc) • 389 B
TypeScript
import { RedditAuthService } from "./reddit-auth-service.js";
export declare abstract class RedditFetchService {
private readonly baseUrl;
private readonly authService;
private readonly rateLimitDelay;
constructor(baseUrl: string, authService: RedditAuthService, rateLimitDelay: number);
protected redditFetch<T>(endpoint: string, options?: RequestInit): Promise<T>;
}