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.
22 lines • 643 B
JavaScript
export const configureReddit = {
name: "configure_reddit",
description: "Configures Reddit settings and communities for the agent to interact with",
inputSchema: {
type: "object",
properties: {
subreddits: {
type: "array",
description: "List of subreddit names to configure",
items: {
type: "string",
description: "Name of the subreddit",
},
},
},
required: ["subreddits"],
},
_meta: {
hidden: false,
},
};
//# sourceMappingURL=configure-reddit.js.map