MCP Catalogs
首页

fantasy-football-mcp-public vs everything

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

fantasy-football-mcp-public
by derekrbreese
everything
by modelcontextprotocol
Stars★ 34★ 85,748
30天用量
综合分4577
官方
分类
sportsAI / LLM 工具开发者工具
开发者工具AI / LLM 工具其它
实现语言PythonTypeScript
最近提交5 个月前本月

fantasy-football-mcp-public · 概述

雅虎梦幻足球 MCP 服务器,提供智能阵容优化、选秀辅助和联盟管理功能。

everything · 概述

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

fantasy-football-mcp-public · 使用场景

  • 利用 AI 算法优化梦幻足球阵容,考虑比赛情况和球员预测
  • 在梦幻足球选秀过程中获得实时推荐和策略性分析
  • 通过增强的球员数据分析自由球员名单,包括最新表现和趋势标志

everything · 使用场景

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

fantasy-football-mcp-public · 安装

安装

  1. 克隆仓库:
git clone https://github.com/derekrbreese/fantasy-football-mcp-public.git
cd fantasy-football-mcp-public
pip install -r requirements.txt
  1. 创建雅虎 API 凭据的 .env 文件:
YAHOO_CLIENT_ID=your_consumer_key_here
YAHOO_CLIENT_SECRET=your_consumer_secret_here
YAHOO_ACCESS_TOKEN=your_access_token
YAHOO_REFRESH_TOKEN=your_refresh_token
YAHOO_GUID=your_yahoo_guid
  1. 完成 OAuth 认证:
cd utils
python setup_yahoo_auth.py

对于 Claude Desktop,添加到 claude_desktop_config.json

{
  "mcpServers": {
    "fantasy-football": {
      "command": "python",
      "args": ["/path/to/fantasy_football_multi_league.py"]
    }
  }
}

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