MCP Catalogs
首页

affine-mcp-server vs everything

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

affine-mcp-server
by DAWNCR0W
everything
by modelcontextprotocol
Stars★ 166★ 85,748
30天用量
综合分5077
官方
分类
效率工具知识库 / RAG开发者工具
开发者工具AI / LLM 工具其它
实现语言TypeScriptTypeScript
最近提交本月本月

affine-mcp-server · 概述

全面的 AFFiNE MCP 服务器,通过 stdio 或 HTTP 提供 84 个工作区、文档和数据库操作工具。

everything · 概述

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

affine-mcp-server · 使用场景

  • 将 Claude Desktop、Cursor 或其他 AI 客户端连接到 AFFiNE 工作区,以增强文档创建和管理
  • 通过 AI 工作流中的 MCP 工具调用自动化 AFFiNE 中的数据库操作
  • 为浏览器连接的客户端创建远程 HTTP 端点,以便通过标准化工具与 AFFiNE 交互

everything · 使用场景

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

affine-mcp-server · 安装

安装

  1. 全局安装 CLI:
npm i -g affine-mcp-server
affine-mcp --version
  1. 或临时运行:
npx -y -p affine-mcp-server affine-mcp -- --version
  1. Docker 部署:
docker run -d 
  -p 3000:3000 
  -e MCP_TRANSPORT=http 
  -e AFFINE_BASE_URL=https://your-affine-instance.com 
  -e AFFINE_API_TOKEN=ut_your_token 
  -e AFFINE_MCP_AUTH_MODE=bearer 
  -e AFFINE_MCP_HTTP_TOKEN=your-strong-secret 
  ghcr.io/dawncr0w/affine-mcp-server:latest

Claude Desktop 配置

添加到您的 Claude Desktop 配置中:

{
  "mcpServers": {
    "affine": {
      "command": "affine-mcp"
    }
  }
}

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 公开数据自动生成,定期更新。