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.
21 lines • 740 B
JavaScript
export const fetchPost = {
name: "fetch_post",
description: "Fetches a single Reddit post by its ID, including all comments and reply threads",
inputSchema: {
type: "object",
properties: {
id: {
type: "string",
description: "The ID of the post to fetch",
},
},
required: ["id"],
},
_meta: {
hidden: true,
displayTitle: "Fetch Post",
type: "server",
},
};
export const fetchPostSuccessMessage = "The user has fetched a post from Reddit. Read and understand the results, present a summary of the results to the user and ask if they would like to fetch another post.";
//# sourceMappingURL=fetch-post.js.map