Metadata-Version: 2.4
Name: niche-reddit-mcp
Version: 0.2.0
Summary: MCP server for Reddit pain point mining and niche demand discovery
Project-URL: Homepage, https://github.com/duanchao/niche-demand-discovery
Project-URL: Repository, https://github.com/duanchao/niche-demand-discovery
Author: duanchao
License-Expression: Apache-2.0
Keywords: demand-discovery,indie-hacker,mcp,niche,reddit
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.11
Requires-Dist: httpx>=0.27.0
Requires-Dist: mcp>=2.0.0
Requires-Dist: pydantic>=2.0.0
Requires-Dist: python-dotenv>=1.0.0
Description-Content-Type: text/markdown

# reddit-mcp

MCP server for discovering pain points and demand signals on Reddit.

## Setup

1. Create a Reddit app at https://www.reddit.com/prefs/apps (type: "script")
2. Copy `.env.example` to `.env` and fill in credentials
3. Run: `uvx reddit-mcp`

## Tools

| Tool | Description |
|------|-------------|
| `reddit_search_pain_points` | Search complaints/wishes in target subreddits |
| `reddit_get_post_details` | Get post content + top comments |
| `reddit_search_alternatives` | Find "alternative to X" discussions |
| `reddit_get_trending` | Hot posts in a subreddit |

## MCP Config

```json
{
  "mcpServers": {
    "reddit-mcp": {
      "command": "uvx",
      "args": ["reddit-mcp"]
    }
  }
}
```
