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.
10 lines (9 loc) • 327 B
TypeScript
import { CreateMessageResult } from "@modelcontextprotocol/sdk/types.js";
export interface GeneratedRedditPost {
title: string;
content: string;
subreddit: string;
tags?: string[];
[key: string]: unknown;
}
export declare function handleCreateRedditPostCallback(result: CreateMessageResult): Promise<void>;