npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@resciencelab/requesthunt-mcp-server

v1.2.2

Published

MCP server for RequestHunt - search feature requests from Reddit, X, and GitHub

Downloads

599

Readme

RequestHunt MCP Server

MCP Badge npm version License: MIT

MCP (Model Context Protocol) server for RequestHunt - search and discover feature requests from Reddit, X (Twitter), and GitHub using Claude Desktop or any MCP-compatible client.

Features

  • Search feature requests across multiple platforms with full-text search
  • AI topic expansion - automatically expand your query to related topics
  • Realtime scraping - fetch fresh data from Reddit, X, and GitHub
  • Filter by topic/category - narrow down to specific products or categories

Quick Start

1. Get an API Key

Sign up at requesthunt.com and create an API key in your dashboard.

2. Configure Claude Desktop

Add to your Claude Desktop configuration file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "requesthunt": {
      "command": "npx",
      "args": ["-y", "@resciencelab/requesthunt-mcp-server"],
      "env": {
        "REQUESTHUNT_API_KEY": "rh_live_your_api_key_here"
      }
    }
  }
}

3. Start Using

Restart Claude Desktop and try:

  • "Search for feature requests about dark mode"
  • "Find what users are requesting for Notion"
  • "List top feature requests for VS Code"

Prompts

discover-requests

Help discover feature requests for any product or topic.

Arguments:

  • topic (required): Product or topic name (e.g., "Notion", "VS Code")
  • expand (optional): Enable AI topic expansion (default: true)

Usage in Claude:

"Use the discover-requests prompt for Notion"

analyze-trends

Analyze patterns and trends in feature requests.

Arguments:

  • topic (required): Topic to analyze
  • platforms (optional): Comma-separated platforms or 'all'

compare-platforms

Compare requests across Reddit, X, and GitHub.

Arguments:

  • topic (required): Topic to compare
  • limit (optional): Results per platform (default: 10)

find-quick-wins

Identify frequently requested features for roadmap planning.

Arguments:

  • topic (required): Product or topic name
  • sortBy (optional): Sort preference (top/new, default: top)

Resources

topics://list

Browse all available topics organized by category.

guide://getting-started

Quick start guide with examples and best practices.

examples://queries

Example queries for common use cases like product research and competitor analysis.

stats://limits

View API rate limits and usage information for free and pro tiers.

Available Tools

search_requests

Full-text search across all feature requests with optional AI expansion.

Parameters:

  • query (required): Search query
  • limit (optional): Max results (1-100, default: 20)
  • expand (optional): Enable AI topic expansion + realtime scraping
  • platforms (optional): Array of platforms to search (reddit, x, github)

Example: "Search for 'offline mode' feature requests with expand enabled"

list_requests

List feature requests with filters and pagination.

Parameters:

  • topic (optional): Filter by topic (e.g., "Notion", "VS Code")
  • category (optional): Filter by category slug
  • platform (optional): Filter by platform (x, reddit, github, requesthunt)
  • limit (optional): Max results (1-100, default: 20)
  • source (optional): cached or realtime
  • sortBy (optional): new or top

Example: "List top feature requests for VS Code"

get_topics

List available topics organized by category.

Example: "Show me all available topics I can filter by"

scrape_requests

Start an on-demand scrape job to collect fresh feature requests.

Parameters:

  • topic (required): Topic to scrape (2-100 characters)
  • platforms (optional): Array of platforms (reddit, x, github)
  • wait (optional): Wait for completion (default: true, max 2 min)

Example: "Scrape feature requests about graphene batteries from Reddit and X"

Rate Limits

| Tier | Cached Requests | Realtime Requests | |------|-----------------|-------------------| | Free | 150/month | 20/month | | Pro | 2000/day | 500/month |

Check your usage at requesthunt.com/dashboard.

Development

# Clone the repository
git clone https://github.com/ReScienceLab/requesthunt-mcp-server.git
cd requesthunt-mcp-server

# Install dependencies
npm install

# Build
npm run build

# Run locally
REQUESTHUNT_API_KEY=your_key node dist/index.js

Testing with MCP Inspector

npx @modelcontextprotocol/inspector node dist/index.js

License

MIT - see LICENSE

Links