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.
11 lines (10 loc) • 368 B
TypeScript
import { ToolHandler } from "./types.js";
export interface SendMessageArgs {
/** Username of the recipient */
recipient: string;
/** Subject line of the message (1-100 chars) */
subject: string;
/** Message content in markdown format (max 10000 chars) */
content: string;
}
export declare const handleSendMessage: ToolHandler<SendMessageArgs>;