Skip to main content

Pre-build reality check for AI coding agents. Stop building what already exists.

Project description

English | 繁體中文

idea-reality-mcp

We search. They guess.

The only idea validator that searches real data. 5 sources. Quantified signal. Zero hallucination.

License: MIT Python 3.11+ MCP PyPI Smithery GitHub stars

idea-reality-mcp demo

The problem

Every developer has wasted days building something that already exists with 5,000 stars on GitHub.

You ask ChatGPT: "Is there already a tool that does X?"

ChatGPT says: "That's a great idea! There are some similar tools, but you can definitely build something better!"

That's not validation. That's cheerleading.

What we do instead

You: "AI code review tool"

idea-reality-mcp:
├── reality_signal: 90/100
├── GitHub repos: 847
├── Top competitor: reviewdog (9,094 ⭐)
├── npm packages: 56
├── HN discussions: 254
└── Verdict: HIGH — consider pivoting to a niche

One gives you encouragement. The other gives you facts.

Which one do you trust your next 3 months on?

Try it now (30 seconds)

uvx idea-reality-mcp

Or try it in your browser — no install required.

Why not just ask ChatGPT?

idea-reality-mcp ChatGPT / ValidatorAI / IdeaProof
Data source GitHub + HN + npm + PyPI + Product Hunt (real-time) LLM generation (no real source searched)
Output Score 0-100 + real projects with star counts Text opinion ("Sounds promising!")
Verifiable Every number has a source Not verifiable
Integration MCP / CLI / API / Web Web-only
Price Free, open-source, forever Free trial → paywall
Audience Developers (before writing code) Non-technical founders (before writing pitch decks)

TL;DR — We search 5 real databases. They generate opinions.

New: AI-powered search intelligence

Claude Haiku 4.5 now generates optimal search queries from your idea description — in any language — with automatic fallback to our battle-tested dictionary pipeline.

Before Now
English ideas ✅ Good ✅ Good
Chinese / non-English ideas ⚠️ Dictionary lookup (150+ terms) ✅ Native understanding
Ambiguous descriptions ⚠️ Keyword matching ✅ Semantic extraction
Reliability 100% (no external API) 100% (graceful fallback to dictionary)

The LLM understands your idea. The dictionary is your safety net. You always get results.

Install (5 minutes)

Claude Desktop

Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "idea-reality": {
      "command": "uvx",
      "args": ["idea-reality-mcp"]
    }
  }
}

Cursor

Paste into .cursor/mcp.json in your project root:

{
  "mcpServers": {
    "idea-reality": {
      "command": "uvx",
      "args": ["idea-reality-mcp"]
    }
  }
}

Claude Code (CLI)

claude mcp add idea-reality -- uvx idea-reality-mcp

Smithery (Remote)

npx -y @smithery/cli install idea-reality-mcp --client claude

Optional: Environment variables

export GITHUB_TOKEN=ghp_...        # Higher GitHub API rate limits
export PRODUCTHUNT_TOKEN=your_...  # Enable Product Hunt (deep mode)

Optional: Agent auto-trigger

The MCP tool description already tells your agent what idea_check does. To make it run proactively (before every new project), add a one-line hint:

When starting a new project, use the idea_check MCP tool to check if similar projects already exist.

Add to your CLAUDE.md, .cursorrules, .windsurfrules, or .github/copilot-instructions.md. See templates/ for all platforms.

Usage

"I have a side project idea — should I build it?"

Tell your AI agent:

Before I start building, check if this already exists:
a CLI tool that converts Figma designs to React components

The agent calls idea_check and returns: reality_signal, top competitors, and pivot suggestions.

"Find competitors and alternatives"

idea_check("open source feature flag service", depth="deep")

Deep mode scans all 5 sources in parallel — GitHub repos, HN discussions, npm packages, PyPI packages, and Product Hunt — and returns ranked results.

"Build-or-buy sanity check before a sprint"

We're about to spend 2 weeks building an internal error tracking tool.
Run a reality check first.

If the signal comes back at 85+ with mature open-source alternatives, you just saved your team 2 weeks.

Tool schema

idea_check

Parameter Type Required Description
idea_text string yes Natural-language description of idea
depth "quick" | "deep" no "quick" = GitHub + HN (default). "deep" = all 5 sources in parallel

Output: reality_signal (0-100), duplicate_likelihood, evidence[], top_similars[], pivot_hints[], meta{}

Full output example
{
  "reality_signal": 72,
  "duplicate_likelihood": "high",
  "evidence": [
    {"source": "github", "type": "repo_count", "query": "...", "count": 342},
    {"source": "github", "type": "max_stars", "query": "...", "count": 15000},
    {"source": "hackernews", "type": "mention_count", "query": "...", "count": 18},
    {"source": "npm", "type": "package_count", "query": "...", "count": 56},
    {"source": "pypi", "type": "package_count", "query": "...", "count": 23},
    {"source": "producthunt", "type": "product_count", "query": "...", "count": 8}
  ],
  "top_similars": [
    {"name": "user/repo", "url": "https://github.com/...", "stars": 15000, "description": "..."}
  ],
  "pivot_hints": [
    "High competition. Consider a niche differentiator...",
    "The leading project may have gaps in...",
    "Consider building an integration or plugin..."
  ],
  "meta": {
    "sources_used": ["github", "hackernews", "npm", "pypi", "producthunt"],
    "keyword_source": "llm",
    "depth": "deep",
    "version": "0.4.0"
  }
}

Scoring weights

Mode GitHub repos GitHub stars HN npm PyPI Product Hunt
Quick 60% 20% 20%
Deep 25% 10% 15% 20% 15% 15%

If Product Hunt is unavailable (no token), its weight is redistributed automatically.

CI: Auto-check on Pull Requests

Use idea-check-action to validate new feature proposals:

name: Idea Reality Check
on:
  issues:
    types: [opened]

jobs:
  check:
    if: contains(github.event.issue.labels.*.name, 'proposal')
    runs-on: ubuntu-latest
    steps:
      - uses: mnemox-ai/idea-check-action@v1
        with:
          idea: ${{ github.event.issue.title }}
          github-token: ${{ secrets.GITHUB_TOKEN }}

Roadmap

  • v0.1 — GitHub + HN search, basic scoring
  • v0.2 — Deep mode (npm, PyPI, Product Hunt), improved keyword extraction
  • v0.3 — 3-stage keyword pipeline, 150+ Chinese term mappings, synonym expansion, LLM-powered search (Render API)
  • v0.4 — Email gate, Score History, Agent Templates, GitHub Action
  • v0.5 — Temporal signals (trend detection and timing analysis)
  • v1.0 — Idea Memory Dataset (opt-in anonymous logging)

Found a blind spot?

If the tool missed obvious competitors or returned irrelevant results:

  1. Open an issue with your idea text and the output
  2. We'll improve the keyword extraction for your domain

License

MIT — see LICENSE

Contact

Built by Mnemox AI · dev@mnemox.ai

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

idea_reality_mcp-0.4.0.tar.gz (879.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

idea_reality_mcp-0.4.0-py3-none-any.whl (29.8 kB view details)

Uploaded Python 3

File details

Details for the file idea_reality_mcp-0.4.0.tar.gz.

File metadata

  • Download URL: idea_reality_mcp-0.4.0.tar.gz
  • Upload date:
  • Size: 879.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for idea_reality_mcp-0.4.0.tar.gz
Algorithm Hash digest
SHA256 0b0e1dbd447872cfa70b8516ee19c37db294739e62e19d222222b80004fef3d4
MD5 44c4c7463de27e90f8606e7a80112360
BLAKE2b-256 0bed16898885e46c2a610f2ac679dbf3a18a219306343bdf8f6786136a9930cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for idea_reality_mcp-0.4.0.tar.gz:

Publisher: publish.yml on mnemox-ai/idea-reality-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file idea_reality_mcp-0.4.0-py3-none-any.whl.

File metadata

File hashes

Hashes for idea_reality_mcp-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 f4aea7fb289716e3d20288c324f68714acb9cb8b2d42cfac4882a3f726db890f
MD5 c40fcbcdf60a25abe69eebd0c6927b44
BLAKE2b-256 2593c5ff0644a441079007afe193aaab850bdb484c573846fc4cc1f652cc1f5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for idea_reality_mcp-0.4.0-py3-none-any.whl:

Publisher: publish.yml on mnemox-ai/idea-reality-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page