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.

15 lines (14 loc) 770 B
export declare const REDDIT_BASE_URL = "https://oauth.reddit.com"; export declare const REDDIT_AUTH_URL = "https://www.reddit.com/api/v1/access_token"; export declare const DEFAULT_RATE_LIMIT_DELAY = 1000; export declare const DEFAULT_POST_LIMIT = 25; export declare const DEFAULT_COMMENT_LIMIT = 100; export declare const DEFAULT_NOTIFICATION_LIMIT = 25; export declare const DEFAULT_SUBREDDIT_LIMIT = 100; export declare const ERROR_MESSAGES: { readonly MISSING_CONFIG: "Reddit configuration is missing or invalid"; readonly INVALID_AUTH: "Invalid Reddit authentication credentials"; readonly RATE_LIMIT: "Reddit API rate limit exceeded"; readonly API_ERROR: "Reddit API request failed"; readonly VALIDATION_ERROR: "Invalid request parameters"; };