UNPKG

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.

86 lines 2.82 kB
// Mock data for testing and development export const mockRedditConfig = { notifications: [ { id: "t4_notif123", type: "comment_reply", created_utc: 1647532800, subreddit: "programming", subject: "Thanks for your helpful comment!", body: "Thanks for your helpful comment!", author: "user123", parent_id: "t1_abc123", permalink: "/r/programming/comments/xyz789/t1_abc123", unread: true, }, ], messages: [ { id: "t4_msg456", type: "message", subject: "Welcome to r/typescript!", parent_id: "t4_msg456", author: "typescript_bot", body: "Welcome to our community! Please read the rules...", created_utc: 1647529200, unread: false, }, ], subscribedSubreddits: [ { id: "xyz789", name: "t5_2fwo", display_name: "programming", title: "Programming", description: "Computer Programming", subscribers: 3500000, created_utc: 1201832000, url: "/r/programming/", over18: false, icon_img: "https://styles.redditmedia.com/t5_2fwo/styles/communityIcon_1bqa1ibfp8q11.png", user_is_subscriber: true, user_is_moderator: false, rules: [ { kind: "link", description: "Please keep submissions on topic and of high quality", short_name: "On Topic & Quality", violation_reason: "Off-topic or low quality", created_utc: 1201832000, priority: 1, }, ], post_requirements: { title_regexes: [], body_regexes: [], title_blacklisted_strings: [], body_blacklisted_strings: [], title_required_strings: [], body_required_strings: [], is_flair_required: true, domain_blacklist: [], domain_whitelist: [], min_combined_karma: 10, account_age_min_days: 30, }, }, ], user: { id: "t2_user123", name: "example_user", created_utc: 1546300800, comment_karma: 1500, link_karma: 1000, is_gold: false, is_mod: false, has_verified_email: true, preferences: { enable_notifications: true, show_nsfw: false, default_comment_sort: "best", theme: "dark", language: "en", }, }, }; //# sourceMappingURL=config.js.map