FantasyPremierLeague vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
FantasyPremierLeague by joreilly | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 593 | ★ 85,748 |
| 30d uses | — | — |
| Score | 51 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOther | File SystemDeveloper ToolsProductivity |
| Language | Jupyter Notebook | TypeScript |
| Last commit | this month | this month |
FantasyPremierLeague · Summary
Kotlin Multiplatform Fantasy Premier League app with MCP server exposing player/fixture data.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
FantasyPremierLeague · Use cases
- Access Fantasy Premier League data through MCP protocol
- Integrate fantasy sports data into AI assistants
- Build multiplatform fantasy league applications
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
FantasyPremierLeague · Install
To use the MCP server, first build it using Gradle:
cd mcp-server
./gradlew shadowJarThen, integrate it with Claude Desktop by adding this configuration to your Developer Settings:
{
"mcpServers": {
"fantasy-premier-league": {
"command": "java",
"args": [
"-jar",
"/path/to/FantasyPremierLeague/mcp-server/build/libs/serverAll.jar",
"--stdio"
]
}
}
}filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using 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 Extension
Click the installation buttons in the README to install directly in VS Code.