
Reddit MCP By UnClick
- 4 repo stars
- malamutemayhem/unclick
Reddit MCP by UnClick is an MCP server that reads public Reddit without OAuth and supports post, comment, vote, and subscribe actions with OAuth.
About
Reddit MCP by UnClick bridges your agent to Reddit in two modes: anonymous-style reading of public data for quick research, and authenticated actions when you supply OAuth for posting, commenting, voting, and subscriptions. developers use it to scan subreddits for demand signals during ideation, draft helpful replies during early launch, and keep a pulse on niche communities without building a custom Reddit client. The package is @unclick/reddit-mcp 0.1.0 with stdio transport. Respect Reddit’s API terms, rate limits, and anti-spam rules—especially for promotional posts—and never treat agent-drafted comments as fully autonomous brand voice without human review.
- Read public Reddit content without OAuth for fast research loops
- Post, comment, vote, and subscribe when OAuth credentials are configured
- stdio @unclick/reddit-mcp (v0.1.0) via npx from UnClick
- Supports validation interviews, subreddit scouting, and light community ops from the agent
Reddit MCP By UnClick by the numbers
- Data as of Jul 7, 2026 (Skillselion catalog sync)
claude mcp add reddit -- npx -y @unclick/reddit-mcpAdd your badge
Show developers this MCP server is listed on Skillselion. Paste this into your README.
| repo stars | ★ 4 |
|---|---|
| Package | @unclick/reddit-mcp |
| Transport | STDIO |
| Auth | None |
| Repository | malamutemayhem/unclick ↗ |
What it does
Mine public Reddit for audience pain and threads without OAuth, then post, comment, vote, and subscribe when you add Reddit OAuth for launch and community work.
Who is it for?
Best when you're doing subreddit validation, support monitoring, and thoughtful community engagement alongside Claude Code or Cursor.
Skip if: Skip if you want bulk spam automation or and cannot comply with Reddit OAuth and platform policies.
What you get
You register one MCP server and your agent can browse threads for validation and, with OAuth, execute sanctioned community actions from a single toolchain.
- Public Reddit read access from agent tools without OAuth setup
- Authenticated Reddit actions when OAuth is configured
- Faster audience research and community workflows from the IDE
By the numbers
- @unclick/reddit-mcp version 0.1.0
- Documented split: public read without OAuth; write actions require OAuth
- stdio transport via npx runtimeHint
README.md
UnClick MCP server
The app store for AI agents. unclick.world
450+ callable endpoints across 178+ tools, available to any MCP-compatible AI client. New tools ship to the API continuously. Your agent picks them up automatically; no package update is needed.
Install
Using the latest GitHub release (no npm account required):
{
"mcpServers": {
"unclick": {
"command": "npx",
"args": ["-y", "https://github.com/malamutemayhem/unclick/releases/latest/download/unclick.tgz"]
}
}
}
Add this to your claude_desktop_config.json (or equivalent for Cursor, Windsurf, etc).
Or install globally from GitHub:
npm install -g https://github.com/malamutemayhem/unclick/releases/latest/download/unclick.tgz
Operational Notes
This repo follows the AGENTS.md fence rules for agent work.
Run
For local web development:
npm run dev
For the API workspace:
npm run dev:api
Test
Run the main test suite:
npm test
Run the production build check:
npm run build
License
UnClick uses a split license. The platform (website, API, and hosted backend
and memory services) is AGPL-3.0 (see LICENSE). The npm client
package @unclick/mcp-server stays MIT, and the standalone connector
packages stay Apache-2.0. Full breakdown and reasoning in
LICENSING.md.
What it does
Gives your agent access to a growing catalog of tools across developer utilities, social media, e-commerce, finance, messaging, media, security, and more. You don't need to install separate packages for each integration. One server provides access to everything in the catalog.
Tool Surface
UnClick exposes a small direct surface for daily agent workflows, plus hidden internal discovery tools for the full catalog.
| Tool group | Tools |
|---|---|
| Memory session protocol | load_memory, save_fact, search_memory, save_identity, save_session |
| Signals and Boardroom coordination | check_signals, read_messages, post_message, create_todo, list_todos, update_todo, complete_todo, create_idea, list_ideas, vote_on_idea, promote_idea_to_todo |
| Hidden internal catalog tools | unclick_search, unclick_browse, unclick_tool_info, unclick_call |
The agent starts with memory, uses direct Boardroom tools for coordination, and can still call the hidden catalog tools by name when it needs dynamic endpoint discovery.
Compatibility and advanced memory operations
- Legacy memory names still work as aliases:
get_startup_context->load_memory,write_session_summary->save_session,add_fact->save_fact,set_business_context->save_identity. - The remaining memory operations are intentionally not listed in
ListToolsand are called throughunclick_callwithendpoint_id: "memory.<op>"(for examplememory.manage_decay,memory.store_code,memory.log_conversation,memory.supersede_fact,memory.upsert_library_doc).
Requirements
- Node.js 18+
- An API key from unclick.world
Set your key as an environment variable:
UNCLICK_API_KEY=your_key_here
Or pass it via the MCP config:
{
"mcpServers": {
"unclick": {
"command": "npx",
"args": ["-y", "https://github.com/malamutemayhem/unclick/releases/latest/download/unclick.tgz"],
"env": {
"UNCLICK_API_KEY": "your_key_here"
}
}
}
}
More
Full catalog, docs, and API keys at unclick.world.
Recommended MCP Servers
How it compares
Reddit API MCP with split read vs OAuth write paths, not a dedicated social scheduling SaaS.
FAQ
Who is Reddit MCP By UnClick for?
Developers and small teams who research and engage on Reddit through an MCP agent without maintaining a custom Reddit integration.
When should I use Reddit MCP By UnClick?
Use it when validating ideas in subreddits, monitoring discussions, or—with OAuth—drafting posts and comments during launch and growth.
How do I add Reddit MCP By UnClick to my agent?
Add stdio MCP with npx @unclick/reddit-mcp@0.1.0; use read tools immediately, and configure Reddit OAuth app credentials for write and vote tools.