How to Check If Your Startup Idea Already Exists (Before You Build)
You have an idea for a developer tool. Before you spend weeks building it, you should check if someone already built it. This sounds obvious, but most developers skip this step — especially when using AI coding agents that start generating code immediately.
Y Combinator co-founder Paul Graham has a famous essay on the topic: founders often build solutions looking for problems. The fix is simple — search first, build second. Here are five methods, from manual to fully automated.
Five methods compared
GitHub Search
Low effort5–15 minCoverage: Open source only
Product Hunt Browse
Medium effort10–20 minCoverage: Launched products
App Store / Play Store
Low effort5–10 minCoverage: Mobile apps
Ask ChatGPT / Claude
Low effort1 minCoverage: General knowledge
idea-reality-mcp (automated)
None (agent runs it) effort3–15 secCoverage: GitHub + HN + npm + PyPI + Product Hunt + Stack Overflow
The real problem: your AI agent never searches
Manual searches work — if you remember to do them. The problem is that AI coding agents (Claude Code, Cursor, Copilot Workspace) start building the moment you describe your idea. They never pause to check if the idea already exists.
This is exactly what idea-reality-mcp solves. It is an MCP server — a tool your agent can call. Add one line to your agent config, and every new project starts with an automatic reality check:
Add to your CLAUDE.md or .cursorrules:
When starting a new project, use the idea_check MCP tool to check if similar projects already exist.What a good result looks like
You: "AI code review tool"
idea_check →
├── reality_signal: 92/100
├── trend: accelerating ↗
├── GitHub repos: 847
├── Top competitor: reviewdog (9,094 ⭐)
├── npm packages: 56
└── Verdict: HIGH — find a niche fast
A score of 92 does not mean "do not build." It means the space is crowded — you need a specific angle. The pivot suggestions help you find that angle.
Try it now
Try idea-reality-mcp in your browser — free, no signup. Or install locally:
pip install idea-reality-mcpBuilt by Mnemox AI. We build open-source MCP servers for trading memory and idea validation.