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) • 309 B
TypeScript
import { CreateMessageResult } from "@modelcontextprotocol/sdk/types.js";
export interface GeneratedRedditComment {
content: string;
id: string;
subreddit: string;
[key: string]: unknown;
}
export declare function handleCreateRedditCommentCallback(result: CreateMessageResult): Promise<void>;