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