MCP Catalogs
首页

everything vs lightdash-mcp-server

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

everything
by modelcontextprotocol
lightdash-mcp-server
by syucream
Stars★ 85,748★ 25
30天用量
综合分7741
官方
分类
开发者工具AI / LLM 工具其它
数据库开发者工具效率工具
实现语言TypeScriptTypeScript
最近提交本月11 个月前

everything · 概述

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

lightdash-mcp-server · 概述

MCP服务器为AI助手提供通过标准接口访问Lightdash分析平台的能力

everything · 使用场景

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

lightdash-mcp-server · 使用场景

  • AI助手可以探索Lightdash项目并根据用户查询检索特定数据可视化
  • 通过提取图表配置自动生成业务指标和仪表板的文档
  • 与AI系统集成,为业务数据探索创建自然语言界面

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

lightdash-mcp-server · 安装

安装

通过Smithery安装(推荐)

npx -y @smithery/cli install lightdash-mcp-server --client claude

手动安装

npm install lightdash-mcp-server

配置

设置以下环境变量:

  • LIGHTDASH_API_KEY: 您的Lightdash个人访问令牌
  • LIGHTDASH_API_URL: API基础URL

Claude Desktop配置

{
  "lightdash": {
    "command": "npx",
    "args": [
      "-y",
      "lightdash-mcp-server"
    ],
    "env": {
      "LIGHTDASH_API_KEY": "<您的PAT>",
      "LIGHTDASH_API_URL": "https://<您的基地址>"
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。