dbt-doctor vs time
并排对比,帮你在这两个 MCP server 之间做选择。
dbt-doctor by Astoriel | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 134 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 48 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具数据库AI / LLM 工具 | 效率工具开发者工具沟通协作 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 1 个月前 | 本月 |
dbt-doctor · 概述
dbt项目的AI驱动质量与治理MCP服务器,提供审计、分析、漂移检测和文档生成功能。
time · 概述
功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。
dbt-doctor · 使用场景
- 基于文档、测试和命名约定,以0-100%分数审计dbt项目健康状况
- 分析数据模型以生成列统计信息和智能测试建议
- 使用建议的测试和文档自动更新schema.yml文件
time · 使用场景
- 协助安排跨时区的国际会议
- 为基于位置的查询提供实时时间信息
- 为旅行计划和行程安排提供时间转换
dbt-doctor · 安装
通过pip安装dbt-doctor:
pip install dbt-doctor对于Claude Desktop,添加到您的claude_desktop_config.json:
{
"mcpServers": {
"dbt-doctor": {
"command": "dbt-doctor",
"args": ["--project-dir", "/absolute/path/to/your/dbt/project"]
}
}
}对于Cursor,添加到您的.cursor/mcp.json:
{
"mcpServers": {
"dbt-doctor": {
"command": "dbt-doctor",
"args": ["--project-dir", "/absolute/path/to/your/dbt/project"]
}
}
}前提条件:使用前运行dbt compile以确保target/manifest.json可用。
time · 安装
安装选项
**使用 uv(推荐):**
uvx mcp-server-time**使用 PIP:**
pip install mcp-server-time
python -m mcp_server_time**为 Claude Desktop 配置:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}