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.
14 lines (13 loc) • 474 B
TypeScript
import { CreateMessageResult } from "@modelcontextprotocol/sdk/types.js";
export interface GeneratedSubredditAnalysis {
subreddit: string;
summary: string;
trendingTopics: string[];
sentiment: "positive" | "neutral" | "negative" | "mixed";
recommendedActions: Array<{
action: string;
reason: string;
}>;
[key: string]: unknown;
}
export declare function handleAnalyseSubredditCallback(result: CreateMessageResult): Promise<void>;