UNPKG

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