Metadata-Version: 2.4
Name: niche-producthunt-mcp
Version: 0.2.0
Summary: MCP server for Product Hunt trend and frontier 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,producthunt
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

# producthunt-mcp

MCP server for discovering trending products and emerging demand on Product Hunt.

## Setup

1. Create an app at https://www.producthunt.com/v2/oauth/applications
2. Copy `.env.example` to `.env` and fill in your Developer Token
3. Run: `uvx producthunt-mcp`

## Tools

| Tool | Description |
|------|-------------|
| `ph_get_daily_products` | Products launched on a specific date |
| `ph_search_products` | Search products by keyword/topic |
| `ph_get_product_details` | Product details + comments |
| `ph_get_trending_topics` | Trending topics/categories |

## MCP Config

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