home / mcp / reddit user mcp server
Provides access to Reddit posts, comments, and interactions via Reddable API using MCP.
Configuration
View docs{
"mcpServers": {
"bigvik193-reddit-user-mcp": {
"command": "npx",
"args": [
"-y",
"@reddable/reddit-user-mcp"
],
"env": {
"REDDABLE_API_KEY": "your_reddable_api_key_here"
}
}
}
}You can access and manage your Reddit activity through an MCP server that exposes your Reddit posts, comments, and interactions via your Reddable account. This lets you fetch posts and comments, inspect post conversations, hide comments, and reply or post new comments through a simple MCP client workflow.
To use this MCP server, configure your MCP client to connect via the built-in stdio channel using the provided command. Once connected, you can fetch a user’s Reddit posts and comments, retrieve all comments for a specific post, hide comments from your view, and reply to existing comments or post new ones. All actions require your Reddable API key, which authenticates requests without exposing your Reddit credentials.
Prerequisites: you need Node.js and npm installed on your machine. If you don’t have them yet, install Node.js from the official website or via your system’s package manager.
1) Create a configuration snippet for your MCP client that registers the Reddit User MCP server. Use the following snippet exactly as shown to enable the MCP integration through npx.
{
"mcpServers": {
"reddit_user": {
"command": "npx",
"args": ["-y", "@reddable/reddit-user-mcp"],
"env": {
"REDDABLE_API_KEY": "your_reddable_api_key_here"
}
}
}
}This MCP server uses long-term API keys to authenticate requests, so no Reddit passwords are ever exposed. All Reddit credentials are stored securely within Reddable, and requests pass through Reddable servers rather than contacting Reddit directly from your client. Keep your API key secret and rotate it if you suspect it has been compromised.
If you encounter connection issues, ensure that the environment variable REDDABLE_API_KEY is set correctly in your MCP client configuration and that the key is valid. Double-check that the MCP server name in your configuration matches the entry shown in the snippet (reddit_user). If you still have trouble, reach out to support channels for assistance.
Fetch Reddit posts from a user using your connected Reddable account.
Fetch Reddit comments from a user to review conversations and context.
Retrieve all comments on a specific Reddit post to analyze discussions.
Hide a Reddit comment from your view to reduce noise or manage visibility.
Post a reply to a specific Reddit comment as your connected user.
Publish a new comment on a Reddit post using your account.