Idea Reality MCP Server

1

Add it to Claude Code

Run this in a terminal.

Run in terminal
claude mcp add idea-reality -- uvx idea-reality-mcp
README.md

Check if your startup idea already exists automatically.

English | 繁體中文

idea-reality-mcp

How to check if someone already built your app idea — automatically.

idea-reality-mcp is an MCP server that scans GitHub, npm, PyPI, Hacker News, Product Hunt, and Stack Overflow to check if your startup idea already exists. It returns a 0–100 reality score with evidence, trend detection, and pivot suggestions — so your AI agent can decide whether to build, pivot, or kill the idea before writing any code.

When to use this: You're about to start a new project and want to know if similar tools already exist, how competitive the space is, and whether the market is growing or declining.

How it works

  1. Describe your idea in plain English — e.g. "a CLI tool that converts Figma designs to React components"
  2. idea_check scans 6 databases in parallel (GitHub repos + stars, Hacker News discussions, npm/PyPI packages, Product Hunt launches, Stack Overflow questions)
  3. Get a 0–100 reality score with trend direction (accelerating/stable/declining), top competitors, and AI-generated pivot suggestions

What you get

You: "AI code review tool"

idea_check →
├── reality_signal: 92/100
├── trend: accelerating ↗
├── market_momentum: 73/100
├── GitHub repos: 847 (45% created in last 6 months)
├── Top competitor: reviewdog (9,094 ⭐)
├── npm packages: 56
├── HN discussions: 254 (trending up)
└── Verdict: HIGH — market is accelerating, find a niche fast

One score. Six sources. Trend detection. Your agent decides what to do next.

Try it in your browser — no install

Quick Start

# 1. Install
uvx idea-reality-mcp

# 2. Add to your agent
claude mcp add idea-reality -- uvx idea-reality-mcp   # Claude Code

3. Ask your agent: "Before I start building, check if this already exists: a CLI tool that converts Figma designs to React components"

That's it. The agent calls idea_check and returns: reality_signal, top competitors, and pivot suggestions.

Other MCP clients

Claude Desktop / Cursor — add to config JSON:

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

Config location: macOS ~/Library/Application Support/Claude/claude_desktop_config.json · Windows %APPDATA%\Claude\claude_desktop_config.json · Cursor .cursor/mcp.json

Smithery (remote, no local install):

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

Usage

MCP tool call (any MCP-compatible agent):

{
  "tool": "idea_check",
  "arguments": {
    "idea_text": "a CLI tool that converts Figma designs to React components",
    "depth": "deep"
  }
}

REST API (no MCP required):

curl -X POST https://idea-reality-mcp.onrender.com/api/check \
  -H "Content-Type: application/json" \
  -d '{"idea_text": "AI code review tool", "depth": "quick"}'

Python:

import httpx

resp = httpx.post("https://idea-reality-mcp.onrender.com/api/check", json={
    "idea_text": "AI code review tool",
    "depth": "deep"
})
print(resp.json()["reality_signal"])  # 0-100

Free. No API key required.

Why not just Google it?

Your AI agent never Googles anything before it starts building. idea_check runs inside your agent — it triggers automatically whether you remember or not.

Google ChatGPT idea-reality-mcp
Who runs it You, manually You, manually Your agent, automatically
Output 10 blue links "Sounds promising!" Score 0-100 + evidence
Sources Web pages None (LLM) GitHub + HN + npm + PyPI + PH + SO
Price Free Paywall Free & open-source (MIT)

Modes

Mode Sources Use case
quick (default) GitHub + HN Fast sanity check, < 3 seconds
deep GitHub + HN + npm + PyPI + Pro

Tools (1)

idea_checkScans multiple databases to check if a startup idea already exists and provides a reality score.

Configuration

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

Try it

Before I start building, check if this already exists: a CLI tool that converts Figma designs to React components.
Run an idea check for an AI-powered personal finance tracker using a deep scan.
Is there a market for a browser extension that summarizes YouTube videos in real-time? Check the current competition.
Analyze the market momentum for a decentralized social media platform.

Frequently Asked Questions

What are the key features of Idea Reality?

Scans GitHub, Hacker News, npm, PyPI, Product Hunt, and Stack Overflow in parallel.. Returns a 0-100 reality score with evidence and trend detection.. Provides AI-generated pivot suggestions based on market data.. Supports quick and deep scan modes for varying levels of analysis..

What can I use Idea Reality for?

Validating startup ideas before writing code to avoid building saturated products.. Identifying top competitors and market trends for a specific software niche.. Helping AI coding agents decide whether to build, pivot, or kill a project.. Conducting rapid market research on existing open-source tools and packages..

How do I install Idea Reality?

Install Idea Reality by running: uvx idea-reality-mcp

What MCP clients work with Idea Reality?

Idea Reality works with any MCP-compatible client including Claude Desktop, Claude Code, Cursor, and other editors with MCP support.

Turn this server into reusable context

Keep Idea Reality docs, env vars, and workflow notes in Conare so your agent carries them across sessions.

Need the old visual installer? Open Conare IDE.
Open Conare