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) • 689 B
TypeScript
export { handleCreateRedditPostCallback } from "./create-post.js";
export { handleCreateRedditCommentCallback } from "./create-comment.js";
export { handleAnalyseSubredditCallback } from "./analyse-subreddit.js";
export { handleSuggestActionCallback } from "./suggest-action.js";
export { handleCreateRedditMessageCallback } from "./create-message.js";
export type { GeneratedRedditPost } from "./create-post.js";
export type { GeneratedRedditComment } from "./create-comment.js";
export type { GeneratedSubredditAnalysis } from "./analyse-subreddit.js";
export type { GeneratedSuggestAction } from "./suggest-action.js";
export type { GeneratedRedditMessage } from "./create-message.js";