idea-reality-mcp: MCP server checks for existing tools before Claude writes code

Pre-build market validation for AI coding agents
A developer created an MCP server called idea-reality-mcp that performs automated market research before writing code with Claude. The tool addresses the common problem of spending hours building something only to discover existing solutions.
How it works
The server scans multiple data sources to determine if similar tools already exist:
- GitHub Search API (repo count + star distribution)
- HN Algolia API (discussion volume)
- npm registry (quick mode skips this)
- PyPI (deep mode)
- Product Hunt (optional, requires token)
Unlike asking an LLM "does this exist?" which relies on guessing, this tool actually searches real APIs and returns quantitative data.
Integration with CLAUDE.md
The key integration involves adding four lines to your CLAUDE.md file:
## Pre-build Reality Check
Before creating any new project, feature, or tool, run `idea_check` with a one-line description.
- If reality_signal > 80: STOP. Warn me about high competition before proceeding.
- If reality_signal > 60: Proceed with caution. Suggest how to differentiate.
- If reality_signal < 40: Green light. Proceed normally.
This causes Claude to automatically check the market whenever you say "build me a ___".
Example output
The tool returns a "reality signal" score from 0-100, where higher numbers indicate more competition. Example output:
Reality Signal: 87/100
Top competitors found:
- existing-tool-1 (2.3k stars)
- existing-tool-2 (890 stars)
Recommendation: High competition. Consider focusing on [specific gap].
Technical details
The tool is open source and runs as a standard MCP server (stdio or HTTP). It works with Claude Code, Cursor, Windsurf, and any MCP-compatible client. Ready-made instruction templates are available for each client. The GitHub repository contains the full implementation and scoring formula.
This approach provides concrete data about market saturation before investing development time, helping developers avoid reinventing existing solutions and identify genuine gaps in the ecosystem.
📖 Read the full source: r/ClaudeAI
👀 See Also

Corbell: Open Source CLI for Cross-Repo Architecture Analysis and Design Docs
Corbell is a free, open source CLI tool that scans multiple repositories to build an architecture graph and generate design documentation locally. It works fully offline with Ollama or supports various LLM providers, and never sends code off your machine.

Zoku: A Tool That Automatically Detects Repeated Workflows in Claude Code
Zoku is a local tool that hooks into Claude Code's event system to record tool actions across sessions, identifies repeated workflow patterns, and then informs Claude about these patterns so it can proactively suggest or execute them. It requires no configuration, has no dependencies, and stores everything locally in ~/.zoku/.

Beacon: Open-Source Endpoint Telemetry for Local AI Agents
Beacon captures local AI agent activity (Claude Code, Codex CLI, Cursor, etc.) and normalizes it into endpoint events for inspection or SIEM forwarding via Wazuh, Elastic, Splunk HEC.

Design Studio Plugin for Claude Code Adds Virtual Design Team with 9 Roles and 16 Commands
A new Claude Code plugin called Design Studio simulates a full design team with 9 specialist roles, 16 slash commands, and 5 agents. It auto-detects tech stacks and includes over 8,000 lines of design knowledge across reference files.