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.
26 lines (25 loc) • 1.51 kB
TypeScript
export * from "./types.js";
export * from "./get-posts.js";
export * from "./get-post.js";
export * from "./get-notifications.js";
export * from "./analyse-subreddit.js";
export * from "./create-post.js";
export * from "./create-comment.js";
export * from "./send-post.js";
export * from "./search-reddit.js";
export * from "./get-comment.js";
export * from "./configure-instructions.js";
export * from "./delete-content.js";
export * from "./edit-content.js";
export type { ToolHandler, ToolHandlerContext, GetChannelPostsArgs, GetPostArgs, GetNotificationsArgs, AnalyseSubredditArgs, CreateRedditPostArgs, CreateRedditCommentArgs, SendPostArgs, SearchRedditArgs, ConfigureInstructionsArgs, SendCommentArgs, GetCommentArgs, DeleteContentArgs, EditContentArgs, RedditPreferences, RedditSubredditConfig, FetchRedditContentArgs, SendMessageArgs, } from "./types.js";
export { handleConfigureInstructions } from "./configure-instructions.js";
export { handleGetChannelPosts } from "./get-posts.js";
export { handleGetPost } from "./get-post.js";
export { handleGetNotifications } from "./get-notifications.js";
export { handleAnalyseSubreddit } from "./analyse-subreddit.js";
export { handleCreateRedditPost } from "./create-post.js";
export { handleCreateRedditComment } from "./create-comment.js";
export { handleSendPost } from "./send-post.js";
export { handleSearchReddit } from "./search-reddit.js";
export { handleGetComment } from "./get-comment.js";
export { handleSendComment } from "./send-comment.js";