time vs domscribe
并排对比,帮你在这两个 MCP server 之间做选择。
time by modelcontextprotocol | domscribe by patchorbit | |
|---|---|---|
| Stars | ★ 85,748 | ★ 168 |
| 30天用量 | — | — |
| 综合分 | 77 | 48 |
| 官方 | ✓ | — |
| 分类 | 效率工具开发者工具沟通协作 | 开发者工具AI / LLM 工具效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 本月 |
time · 概述
功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。
domscribe · 概述
Domscribe 通过 MCP 桥接运行中的应用程序和源代码,使 AI 代理能够查看实时 UI 上下文并进行精准编辑。
time · 使用场景
- 协助安排跨时区的国际会议
- 为基于位置的查询提供实时时间信息
- 为旅行计划和行程安排提供时间转换
domscribe · 使用场景
- AI 代理通过查询源代码位置检查实时 UI 状态,理解渲染的组件
- 开发者指向 UI 元素并用普通英语描述更改,由 AI 实施
- 跨框架开发,在热重载过程中提供稳定的 DOM 到源映射
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"]
}
}
}domscribe · 安装
使用设置向导安装:
npx domscribe init这将引导您连接编码代理并添加到应用中。手动设置步骤:
- 添加到打包器/框架(以 React 与 Vite 为例):
npm install -D @domscribe/react// vite.config.ts
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import { domscribe } from '@domscribe/react/vite';
export default defineConfig({
plugins: [react(), domscribe()],
});- 连接您的编码代理(以 Claude Desktop 为例):
添加到 Claude 的 config.json:
{
"mcpServers": {
"domscribe": {
"command": "npx",
"args": ["domscribe", "mcp"]
}
}
}