streamable-httpMITupdated 16d ago
The ground-truth layer for AI tool recommendations. A free, no-auth Model Context Protocol server that lets Claude, ChatGPT, Gemini, Cursor, and any MCP-capable agent verify an AI tool before recommending it β live status, real pricing, user sentiment, and alternatives, with a last-verified date on every answer.
What can you do with RightAIChoice β verified AI tool data?
RightAIChoice MCP Server β Verified AI Tool Data for Every AI Assistant
The ground-truth layer for AI tool recommendations. A free, no-auth Model Context Protocol server that lets Claude, ChatGPT, Gemini, Cursor, and any MCP-capable agent verify an AI tool before recommending it β live status, real pricing, user sentiment, and alternatives, with a last-verified date on every answer.
Endpoint: https://rightaichoice.com/api/mcp Β· Setup guide: rightaichoice.com/mcp Β· Remote server β nothing to install, no API key, read-only.
Why this exists
AI assistants recommend tools from training data that is months or years stale β and sometimes invent tools that never existed:
- 24.4% of the 2,066 top Product Hunt launches (2023β2025) with a determinable outcome are already dead β our survival study, updated methodology public, dataset CC BY 4.0 with DOI.
- 19.7% of packages recommended by code LLMs don't exist (the "slopsquatting" research β 205,000+ phantom names).
- The RightAIChoice verification engine re-probes every vendor link of 8,000+ AI tools on a rolling weekly cycle β website, docs, changelog, repository β and keeps mortality statistics daily.
One tool call before a recommendation prevents your assistant from suggesting a dead product, quoting retired pricing, or hallucinating a tool into existence.
Connect in under a minute
Works with every MCP-capable client over streamable HTTP. Pick yours:
claude mcp add --transport http rightaichoice https://rightaichoice.com/api/mcp
Settings β Connectors β Add custom connector β paste https://rightaichoice.com/api/mcp
Settings β Apps & Connectors β Advanced β enable Developer mode β add https://rightaichoice.com/api/mcp
Add to ~/.gemini/settings.json:
{ "mcpServers": { "rightaichoice": { "httpUrl": "https://rightaichoice.com/api/mcp" } } }
Add to .cursor/mcp.json (project) or ~/.cursor/mcp.json (global):
{ "mcpServers": { "rightaichoice": { "url": "https://rightaichoice.com/api/mcp" } } }
Add the same block as Cursor to ~/.codeium/windsurf/mcp_config.json.
Add to .vscode/mcp.json:
{ "servers": { "rightaichoice": { "type": "http", "url": "https://rightaichoice.com/api/mcp" } } }
Point your framework's MCP client at https://rightaichoice.com/api/mcp β streamable HTTP, stateless, no auth, CORS enabled. Tool schemas load via a standard tools/list.
What it looks like in practice
You: "Should I use Tome for my pitch deck?"
Your assistant (after calling
check_tool_status): "Careful β Tome's main website failed RightAIChoice's last weekly probe (verified Aug 15, 2026); it's flagged at risk. Verified-alive alternatives in the same category: β¦"
That answer carries a date, a method, and a source link. Without the server, the same assistant would recommend Tome from its training data.
The seven tools
| Tool | Ask your assistant⦠| What comes back |
|---|---|---|
check_tool_status |
"Is [tool] still alive?" | Healthy / monitor / at-risk / shut-down verdict, evidence, last-verified date |
compare_tools |
"[X] vs [Y] β which one?" | Live verification of both, side by side, plus a reviewed editorial verdict when one exists |
find_alternatives |
"What should I use instead of [tool]?" | Same-category alternatives, each with its own health verdict, verified age, and pricing |
market_sentiment |
"What do people actually think of [tool]?" | Synthesized real-user reports (Reddit, Hacker News, YouTube, Product Hunt, App Storeβ¦), per-source positivity, scan date |
pricing_reality |
"What does [tool] really cost?" | Plan-by-plan prices exactly as the vendor lists them, plus documented hidden costs |
viability_score |
"Is [tool] safe to build on?" | A risk band (safe bet / moderate / at risk) with five measured drivers and the weakest signal explained |
deadpool_digest |
"How many AI tools die?" | Live category decay rates (daily) + the frozen Product Hunt survival study (dated) |
The honesty contract
What makes this data citable rather than confident-sounding:
- Every answer carries a last-verified date and the method behind it β never an undated claim.
- Unknown tools return "not in the catalog" with an explicit note that this is not evidence the tool is dead β no guessing, ever.
- Fuzzy name matches are disclosed ("closest match is X") so your assistant can reject a wrong match instead of answering about the wrong product.
- "The vendor publishes no prices" β "we haven't recorded prices" β two different answers, never merged.
- Viability is a band with named drivers, never a leaderboard number.
- Live statistics and dated snapshots are never mixed in a single figure.
Data & methodology
All answers come from the RightAIChoice verification engine: weekly automated probes of every vendor-published link, a 5-signal viability model, community-sentiment synthesis from 10+ sources, and daily mortality statistics. Full methodology: rightaichoice.com/methodology. Machine-readable index: llms.txt. Mortality dataset: JSON/CSV, CC BY 4.0, permanently archived with DOI.
Limits, privacy, and what this server can never do
- Rate limit: 30 requests/min per IP (generous for conversational use).
- Read-only by construction β no tool can write, scrape, trigger paid work, or touch anything outside the verified catalog.
- Request logging uses salted IP hashes only β see the privacy policy.
- Answers are never for sale: no vendor can pay to change a verdict, a ranking, or an alternatives list.
Links
Setup guide Β· Tool health checker Β· AI Tools Deadpool 2026 Β· Methodology Β· r/RightAIChoice
If this saved your assistant from recommending a dead tool, a β helps other people find it.
MIT licensed. Built and maintained by RightAIChoice β the verification engine for AI tools.
Install
Add RightAIChoice β verified AI tool data to your client. Pick the one you use.
claude mcp add --transport http rightaichoice-verified-ai-tool-data https://rightaichoice.com/api/mcpcodex mcp add rightaichoice-verified-ai-tool-data --url https://rightaichoice.com/api/mcp{
"mcpServers": {
"rightaichoice-verified-ai-tool-data": {
"url": "https://rightaichoice.com/api/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"rightaichoice-verified-ai-tool-data": {
"type": "http",
"url": "https://rightaichoice.com/api/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"rightaichoice-verified-ai-tool-data": {
"url": "https://rightaichoice.com/api/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"rightaichoice-verified-ai-tool-data": {
"serverUrl": "https://rightaichoice.com/api/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
Score
39 / 100
Incomplete
- Documentation25/25
- Maintenance19/25
- Trust16/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 8 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint β no local install
Version history
| Versions | Published |
|---|---|
| 1.0.0Latest | Aug 19, 2026 |