ai.smithery/rainbowgore-stealthee-mcp-tools
AI 与智能体by rainbowgore
在产品走红前发现即将发布的新项目,搜索网络与科技站点并提取、解析页面内容,帮助你抢先洞察趋势。
什么是 ai.smithery/rainbowgore-stealthee-mcp-tools?
在产品走红前发现即将发布的新项目,搜索网络与科技站点并提取、解析页面内容,帮助你抢先洞察趋势。
README
Stealthee MCP - Tools for being early

Stealthee is a dev-first system for surfacing pre-public product signals - before they trend. Built for CTOs and tech leaders who need competitive intelligence and early threat detection. It combines search, extraction, scoring, and alerting into a plug-and-play pipeline you can integrate into Claude, LangGraph, Smithery, or your own AI stack via MCP.
Perfect for competitive intelligence, technology trend monitoring, and strategic planning.
Use it if you're:
- A CTO or tech leader needing competitive intelligence, early threat detection, and innovation scouting to inform strategic decisions
- An investor hunting for pre-traction signals
- A founder scanning for competitors before launch
- A researcher tracking emerging markets
- A developer building agents, dashboards, or alerting tools that need fresh product intel.
What's cookin'?
MCP Tools
| Tool | Description |
|---|---|
web_search | Search the web for stealth launches (Tavily) |
url_extract | Extract content from URLs (BeautifulSoup) |
score_signal | AI-powered signal scoring (OpenAI) |
batch_score_signals | Batch process multiple signals |
search_tech_sites | Search tech news sites only |
parse_fields | Extract structured fields from HTML |
run_pipeline | End-to-end detection pipeline |
Installation & Setup
Prerequisites
- API keys for external services (see Environment Variables)
Quick Start
-
Clone and Setup
bashgit clone https://github.com/rainbowgore/Stealthee-MCP-tools cd stealthee-MCP-tools python3 -m venv .venv source .venv/bin/activate pip install -r requirements.txt -
Configure Environment
Fill the
.envfile with your API keys:bash# Required TAVILY_API_KEY=your_tavily_key_here OPENAI_API_KEY=your_openai_key_here NIMBLE_API_KEY=your_nimble_key_here # Optional SLACK_WEBHOOK_URL=your_slack_webhook_here -
Start Servers
bash# MCP Server (for Claude Desktop) python mcp_server_stdio.py # FastMCP Server (for Smithery) smithery dev # FastAPI Server (Optional - Legacy) python start_fastapi.py
Smithery & Claude Desktop Integration
All MCP tools listed above are available out-of-the-box in Smithery. Smithery is a visual agent and workflow builder for AI tools, letting you chain, test, and orchestrate these tools with no code.
Available Tools
- web_search: Search the web for stealth launches using Tavily.
- url_extract: Extract and clean content from any URL.
- score_signal: Use OpenAI to score a single signal for stealthiness.
- batch_score_signals: Score multiple signals in one go.
- search_tech_sites: Search only trusted tech news sources.
- parse_fields: Extract structured fields (like pricing, changelog) from HTML.
- run_pipeline: End-to-end pipeline: search, extract, parse, score, and store.
How to Use in Smithery
- Open the Stealthee MCP Tools page on Smithery.
- Click "Try in Playground" to test any tool interactively.
- Use the visual workflow builder to chain tools together (e.g., search → extract → score).
- Integrate with Claude Desktop or your own agents by copying the workflow or using the API endpoints provided by Smithery.
Cursor (Stealth Radar MCP)
To use Stealth Radar MCP in Cursor via the hosted URL (Streamable HTTP):
- Open Cursor Settings → MCP (or search for "MCP" in settings).
- Under Install MCP Server, fill in:
- Name:
Stealth Radar(or any name you like). - Type:
streamableHttp. - URL: Use either:
- Smithery: The connection URL from your server's Smithery Connect page (e.g.
https://smithery.ai/server/rainbowgore/Product-Stealth-Launch-Radar), or - Direct: Your server's MCP endpoint, e.g.
https://your-ngrok-url.ngrok-free.app/mcp(must end with/mcp).
- Smithery: The connection URL from your server's Smithery Connect page (e.g.
- Name:
- Click Install. Cursor will connect to the server; once added, it loads automatically when you use Cursor.
If you run the server locally, use stdio instead: set Type to stdio, Command to your Python path, and Args to mcp_server_stdio.py with cwd pointing at the repo.
Claude Desktop Integration
Add to your Claude Desktop config.json file:
{
"mcpServers": {
"stealth-mcp": {
"command": "/path/to/stealthee-MCP-tools/.venv/bin/python",
"args": ["/path/to/stealthee-MCP-tools/mcp_server_stdio.py"],
"cwd": "/path/to/stealthee-MCP-tools",
"env": {
"TAVILY_API_KEY": "your_tavily_key",
"OPENAI_API_KEY": "your_openai_key"
}
}
}
}
Tool Use Cases
For Analysts & Builders:
web_search: Find stealth product mentions across the weburl_extract: Pull and clean raw text from landing pagesscore_signal: Judge how likely a change log implies launchbatch_score_signals: Quickly triage dozens of scraped URLssearch_tech_sites: Limit queries to trusted domains onlyparse_fields: Extract pricing/release info from messy HTMLrun_pipeline: Full pipeline — search → extract → parse → score
Signal Intelligence Workflow
- Search Phase: Use
web_searchorsearch_tech_sitesto find relevant URLs - Extraction Phase: Use
url_extractto get clean content from URLs - Parsing Phase: Use
parse_fieldsto extract structured data (pricing, changelog, etc.) - Analysis Phase: Use
score_signalorbatch_score_signalsfor AI-powered analysis - Storage Phase: All signals are stored in SQLite database
- Alert Phase: High-confidence signals trigger Slack notifications
FastAPI Server
You can also run this project as a FastAPI server for REST-style access to all MCP tools.
Base Endpoints
- Swagger UI: http://localhost:8000/docs
- Health Check: http://localhost:8000/health
- Tool Manifest: http://localhost:8000/tools
Example Usage
Search for stealth launches:
curl -X POST "http://localhost:8000/tools/web_search" \
-H "Content-Type: application/json" \
-d '{"query": "stealth startup AI", "num_results": 5}'
Run full detection pipeline:
curl -X POST "http://localhost:8000/tools/run_pipeline" \
-H "Content-Type: application/json" \
-d '{"query": "new AI product launch", "num_results": 3}'
Pipeline Parameters
query(required): Search phrase (e.g. "AI roadmap")num_results(optional, default: 5): Number of search results to analyzetarget_fields(optional, default: ["pricing", "changelog"]): Fields to extract from HTML
What run_pipeline Does
- Searches tech and stealth-friendly sources using Tavily
- Extracts raw content from each result
- Parses structured signals (pricing, changelog, etc.)
- Scores each result with OpenAI to estimate stealthiness
- Stores results in local SQLite
- Notifies via Slack if confidence is high
AI Scoring Logic
The score_signal and batch_score_signals tools use GPT-3.5 to evaluate:
- Stealth indicators (e.g. private changelogs, missing press, beta flags)
- Confidence level (Low / Medium / High)
- Textual reasoning (used in UI or alerting)
Database Schema (data/signals.db)
| Field | Type | Description |
|---|---|---|
id | INTEGER | Primary key |
url | TEXT | Source URL |
title | TEXT | Signal title |
html_excerpt | TEXT | First 500 characters of content |
changelog | TEXT | Parsed changelog (optional) |
pricing | TEXT | Parsed pricing info (optional) |
score | REAL | Stealth likelihood (0–1) |
confidence | TEXT | Confidence level |
reasoning | TEXT | AI rationale for the score |
created_at | TEXT | ISO timestamp |
Dev Quickstart (FastAPI)
python start_fastapi.py
Then visit: http://localhost:8000/docs
Built with 💜 for those who spot what others miss.
常见问题
ai.smithery/rainbowgore-stealthee-mcp-tools 是什么?
在产品走红前发现即将发布的新项目,搜索网络与科技站点并提取、解析页面内容,帮助你抢先洞察趋势。
相关 Skills
Claude接口
by anthropics
面向接入 Claude API、Anthropic SDK 或 Agent SDK 的开发场景,自动识别项目语言并给出对应示例与默认配置,快速搭建 LLM 应用。
✎ 想把Claude能力接进应用或智能体,用claude-api上手快、兼容Anthropic与Agent SDK,集成路径清晰又省心
智能体流程设计
by alirezarezvani
面向生产级多 Agent 编排,梳理顺序、并行、分层、事件驱动、共识五种工作流设计,覆盖 handoff、状态管理、容错重试、上下文预算与成本优化,适合搭建复杂 AI 协作系统。
✎ 帮你把多智能体流程设计、编排和自动化统一起来,复杂工作流也能更稳地落地,适合追求强控制力的团队。
提示工程专家
by alirezarezvani
覆盖Prompt优化、Few-shot设计、结构化输出、RAG评测与Agent工作流编排,适合分析token成本、评估LLM输出质量,并搭建可落地的AI智能体系统。
✎ 把提示优化、LLM评测到RAG与智能体设计串成一套方法,适合想系统提升AI开发效率的人。
相关 MCP Server
知识图谱记忆
编辑精选by Anthropic
Memory 是一个基于本地知识图谱的持久化记忆系统,让 AI 记住长期上下文。
✎ 帮 AI 和智能体补上“记不住”的短板,用本地知识图谱沉淀长期上下文,连续对话更聪明,数据也更可控。
顺序思维
编辑精选by Anthropic
Sequential Thinking 是让 AI 通过动态思维链解决复杂问题的参考服务器。
✎ 这个服务器展示了如何让 Claude 像人类一样逐步推理,适合开发者学习 MCP 的思维链实现。但注意它只是个参考示例,别指望直接用在生产环境里。
PraisonAI
编辑精选by mervinpraison
PraisonAI 是一个支持自反思和多 LLM 的低代码 AI 智能体框架。
✎ 如果你需要快速搭建一个能 24/7 运行的 AI 智能体团队来处理复杂任务(比如自动研究或代码生成),PraisonAI 的低代码设计和多平台集成(如 Telegram)让它上手极快。但作为非官方项目,它的生态成熟度可能不如 LangChain 等主流框架,适合愿意尝鲜的开发者。