mcp-dashboards vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-dashboards by KyuRish | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 22 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 45 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具效率工具开发者工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 本月 |
mcp-dashboards · 概述
MCP 服务器在 AI 对话中渲染交互式数据可视化图表和仪表板。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
mcp-dashboards · 使用场景
- 业务分析师在 AI 对话中直接创建财务报告和 KPI 仪表板
- 数据科学家可视化复杂数据集并与团队成员共享交互式图表
- 投资组合经理在会议期间实时追踪投资组合和市值数据
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
mcp-dashboards · 安装
安装
Claude Desktop
添加到您的 claude_desktop_config.json:
- **Windows:**
%APPDATA%\Claude\claude_desktop_config.json - **macOS:**
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"dashboard": {
"command": "npx",
"args": ["-y", "mcp-dashboards", "--stdio"]
}
}
}Claude Code / VS Code
claude mcp add dashboard -- npx -y mcp-dashboards --stdio远程 (HTTP)
npx mcp-dashboards
# 服务器启动于 http://localhost:3001/mcpeverything · 安装
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