FantasyPremierLeague vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
FantasyPremierLeague by joreilly | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 593 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 51 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具AI / LLM 工具其它 | 本地文件系统开发者工具效率工具 |
| 实现语言 | Jupyter Notebook | TypeScript |
| 最近提交 | 本月 | 本月 |
FantasyPremierLeague · 概述
Kotlin 多平台应用,包含 MCP 服务器,提供英超球员和比赛信息。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
FantasyPremierLeague · 使用场景
- 通过 MCP 协议访问英超梦幻联赛数据
- 将体育数据集成到 AI 助手中
- 构建多平台梦幻联赛应用
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
FantasyPremierLeague · 安装
要使用 MCP 服务器,首先使用 Gradle 构建它:
cd mcp-server
./gradlew shadowJar然后,通过将以下配置添加到开发者设置来集成它与 Claude Desktop:
{
"mcpServers": {
"fantasy-premier-league": {
"command": "java",
"args": [
"-jar",
"/path/to/FantasyPremierLeague/mcp-server/build/libs/serverAll.jar",
"--stdio"
]
}
}
}filesystem · 安装
安装
使用 NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}使用 Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code 扩展
点击 README 中的安装按钮直接在 VS Code 中安装。