MCP Catalogs
首页

n8n-claw vs everything

并排对比,帮你在这两个 MCP server 之间做选择。

n8n-claw
by freddy-schuetz
everything
by modelcontextprotocol
Stars★ 436★ 85,748
30天用量
综合分5177
官方
分类
AI / LLM 工具效率工具开发者工具
开发者工具AI / LLM 工具其它
实现语言ShellTypeScript
最近提交本月本月

n8n-claw · 概述

基于n8n的自托管AI代理,具有MCP技能库、记忆管理和专家代理功能。

everything · 概述

官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。

n8n-claw · 使用场景

  • 个人任务管理和提醒助手
  • 团队协作代理与知识追踪
  • 用于构建自定义 API 集成的开发者工具

everything · 使用场景

  • 测试 MCP 客户端实现是否支持所有协议功能
  • 通过参考服务器学习 MCP 协议能力
  • 验证客户端对不同传输方式的兼容性

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 发送消息即可开始交互。

everything · 安装

NPX(推荐)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Windows 用户请使用 cmd /c

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

全局安装

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
对比内容由 README + GitHub 公开数据自动生成,定期更新。