MCP Catalogs
首页

actual-mcp-server vs everything

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

actual-mcp-server
by agigante80
everything
by modelcontextprotocol
Stars★ 15★ 85,748
30天用量
综合分4477
官方
分类
金融数据效率工具AI / LLM 工具
开发者工具AI / LLM 工具其它
实现语言TypeScriptTypeScript
最近提交本月本月

actual-mcp-server · 概述

MCP服务器将Claude Desktop/LibreChat/LobeChat与Actual Budget连接,提供63个工具实现自然语言财务管理。

everything · 概述

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

actual-mcp-server · 使用场景

  • 自然语言预算管理和交易创建
  • 在不离开聊天界面的情况下进行支出分析和财务洞察
  • 通过安全身份验证进行多用户预算管理

everything · 使用场景

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

actual-mcp-server · 安装

Docker安装(推荐)

docker run -d \
  --name actual-mcp-server-backend \
  -p 3600:3600 \
  -e ACTUAL_SERVER_URL=http://localhost:5006 \
  -e ACTUAL_PASSWORD=your_password \
  -e ACTUAL_BUDGET_SYNC_ID=your_sync_id \
  -e MCP_SSE_AUTHORIZATION=your_secret_token \
  -v actual-mcp-data:/data \
  ghcr.io/agigante80/actual-mcp-server:latest

Claude Desktop配置

{
  "mcpServers": {
    "actual-budget": {
      "command": "npx",
      "args": ["-y", "actual-mcp-server", "--stdio"],
      "env": {
        "ACTUAL_SERVER_URL": "http://localhost:5006",
        "ACTUAL_PASSWORD": "your_actual_password",
        "ACTUAL_BUDGET_SYNC_ID": "your-sync-id-here",
        "MCP_BRIDGE_DATA_DIR": "/absolute/path/to/data-dir"
      }
    }
  }
}

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