Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"trueai": {
"url": "https://www.shiflowai.cloud/mcp"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
TrueAI 是一个面向 AI 工具的 智能体推荐 + 人工评测 + 对话式导航 平台 MVP。
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'cp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked cp against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in cloud
⚡ A Simple / Speedy / Secure Link Shortener with Analytics, 100% run on Cloudflare.
MCP Server for GCP environment for interacting with various Observability APIs.
MCP Server for kubernetes management commands
MCP server for Hostinger API
MCP Security Weekly
Get CVE alerts and security updates for io.github.chenyujing1234-netizen/trueai and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
我来帮你省钱,我来帮你省时间。 数据实时、人工评测、无广告。 没有最好的,只有最适合你的。
TrueAI 是一个面向 AI 工具的 智能体推荐 + 人工评测 + 对话式导航 平台 MVP。 用户可以:
TrueAI 1600+ 应用目录已封装成 MCP Server 和 单文件 Skill,让你的
agent 直接获得"挑 AI 工具"的能力。完整文档:skills/trueai/SKILL.md。
{ "mcpServers": { "trueai": { "url": "https://www.shiflowai.cloud/mcp" } } }
接入后 agent 立即获得 4 个工具:
| 工具 | 用途 |
|---|---|
recommend_ai_tools(description, top_k) | 用户自然语言需求 → 推荐合适应用 |
get_ai_tool(name_or_url, include_reviews) | 名称 / slug / 官网 URL → 应用完整信息 |
list_ai_tools(category, free_only, ...) | 按分类 / 形态 / 是否免费 浏览目录 |
list_categories() | 列出全部分类 |
把 skills/trueai/SKILL.md 复制到任意 agent 的 skills 目录,
agent 就会按文档里 curl 示例直接调 https://www.shiflowai.cloud/api/*。
每个 AI 应用 34 个结构化字段(评分 / 价格 / 形态 / 评论 / 链接 …),
完整 JSON Schema:docs/ai_tool_schema.json。
TrueAI 网站里 1600+ 应用的结构化字段——名称、Logo、Slogan、定价、子功能列表、 易用性 / 效果 / 性价比评分等——不是人工录入的,而是由我们另一个开源项目 StructAIWeb 自动跑出来的。 它是 TrueAI 数据管线的 核心 AI 智能体:
| 维度 | 说明 |
|---|---|
| 仓库 | https://github.com/chenyujing1234-netizen/StructAIWeb |
| 形态 | Windows 桌面 GUI + CLI(Python + Playwright) |
| 浏览器 | 通过 CDP 接管你本地已登录的 Chrome,天然复用 Cookie / 扩展,规避大多数风控 |
| 探索 | 启发式按「价格 → 功能 → 关于 → 文档」遍历站点,自动点 CTA 进入主功能区 |
| 试用 | 主动输入提示词、点 "生成 / 提交",永远避开 "购买 / 充值 / 订阅" 按钮 |
| 视觉 | 可选启用多模态视觉模型(Qwen-VL / GPT-4o / GLM-4V)识别"该点哪个按钮" |
| 登录墙 | 自动检测并暂停,等你完成登录后继续 |
| 整合 | 把所有页面快照交给 LLM 输出结构化 JSON + 三项主观评分(usability / effect / price) |
| 输出字段 | 与 docs/ai_tool_schema.json 完全对齐 |
| License | MIT |
简言之:
StructAIWeb 负责"看懂一个 AI 网站",TrueAI 负责"把上千个看懂的结果织成一个懂你的导航站"。
想自己跑数据 / 扩展更多 AI 工具?fork StructAIWeb,跑完把 output/*.json 喂进 TrueAI 的
backend/scripts/sync_*.py 入库脚本即可。
| 层 | 选型 |
|---|---|
| 后端 | Python 3.10+ / FastAPI 0.115 / SQLAlchemy 2 / Alembic / PyMySQL |
| 前端 | Next.js 14 (App Router, 纯 JavaScript) / Tailwind CSS / Framer Motion / Zustand |
| 数据库 | MySQL 8 (114.55.254.123:3306/trueai) |
| LLM | 阿里云 DashScope (qwen-plus),未配置 Key 时自动回退 Mock 文案 |
| 鉴权 | JWT (python-jose) + bcrypt |
TrueAI/
├── backend/ # FastAPI 服务
│ ├── app/
│ │ ├── core/ # 配置 / DB / 安全
│ │ ├── models/ # ORM 模型
│ │ ├── schemas/ # Pydantic
│ │ ├── api/routers/ # auth / categories / tools / reviews / rankings / stats / search
│ │ ├── services/llm/ # Qwen 与 Mock 两种 Provider
│ │ ├── services/recommend.py # 意图抽取 + MySQL 候选召回
│ │ └── seeds/seed_tools.py
│ ├── alembic/
│ └── requirements.txt
└── frontend/ # Next.js 14
├── app/ # layout / page / category / tool / search / rankings / compare / earn
├── components/ # NavBar / HeroTypewriter / Sidebar / ToolCard / CompareBar / ChatSearch ...
├── lib/ # api.js / compareStore.js / labels.js
└── tailwind.config.js
前提:已安装 Python 3.10+、Node 20+、能访问 MySQL
114.55.254.123:3306。
cd backend
python3 -m venv venv
source venv/bin/activate
pip ins
... [View full README on GitHub](https://github.com/chenyujing1234-netizen/trueai#readme)