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.
25 lines • 1.14 kB
JavaScript
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 { 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";
//# sourceMappingURL=index.js.map