n8n-claw vs time
并排对比,帮你在这两个 MCP server 之间做选择。
n8n-claw by freddy-schuetz | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 436 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 51 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具效率工具开发者工具 | 效率工具开发者工具沟通协作 |
| 实现语言 | Shell | TypeScript |
| 最近提交 | 本月 | 本月 |
n8n-claw · 概述
基于n8n的自托管AI代理,具有MCP技能库、记忆管理和专家代理功能。
time · 概述
功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。
n8n-claw · 使用场景
- 个人任务管理和提醒助手
- 团队协作代理与知识追踪
- 用于构建自定义 API 集成的开发者工具
time · 使用场景
- 协助安排跨时区的国际会议
- 为基于位置的查询提供实时时间信息
- 为旅行计划和行程安排提供时间转换
n8n-claw · 安装
安装
前提条件
- Linux VPS (推荐 Ubuntu 22.04/24.04,最少 4GB RAM 和 15GB 磁盘)
- Telegram Bot Token (从 [@BotFather](https://t.me/BotFather) 获取)
- 您的 Telegram Chat ID (从 [@userinfobot](https://t.me/userinfobot) 获取)
- LLM API Key (Anthropic, OpenAI, OpenRouter, DeepSeek, Gemini, Mistral, Ollama 或 OpenAI 兼容)
- 域名 (或使用 [sslip.io](https://sslip.io))
设置步骤
git clone https://github.com/freddy-schuetz/n8n-claw.git && cd n8n-claw && ./setup.sh脚本将提示输入:
- n8n API Key (在 n8n UI 中生成:设置 → API)
- Telegram Bot Token 和 Chat ID
- LLM API Key (选择您的提供商)
- 域名
- 代理个性 (名称、语言、沟通风格)
可选功能:
- 用于语义记忆搜索的嵌入
- 语音消息 (需要 Whisper API key)
Claude Desktop 集成
{
"mcpServers": {
"n8n-claw": {
"command": "docker",
"args": ["run", "--rm", "-i", "n8n-claw-agent", "mcp"],
"env": {
"TELEGRAM_BOT_TOKEN": "your-telegram-token",
"TELEGRAM_CHAT_ID": "your-chat-id",
"LLM_API_KEY": "your-llm-key",
"DOMAIN": "your-domain"
}
}
}
}设置完成后,向您的 Telegram bot 发送消息即可开始交互。
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"]
}
}
}