fantasy-football-mcp-public vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
fantasy-football-mcp-public by derekrbreese | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 34 | ★ 85,748 |
| 30d uses | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | sportsAI / LLM ToolsDeveloper Tools | File SystemDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 5 mo ago | this month |
fantasy-football-mcp-public · Summary
Yahoo Fantasy Football MCP server offering intelligent lineup optimization, draft assistance, and league management.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
fantasy-football-mcp-public · Use cases
- Optimize fantasy football lineups with AI-powered algorithms considering matchups and player projections
- Receive real-time draft recommendations during fantasy football drafts with strategy-based analysis
- Analyze waiver wire targets with enhanced player data including recent performance and trend flags
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
fantasy-football-mcp-public · Install
Installation
- Clone the repository:
git clone https://github.com/derekrbreese/fantasy-football-mcp-public.git
cd fantasy-football-mcp-public
pip install -r requirements.txt- Set up Yahoo API credentials by creating a
.envfile:
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- Complete OAuth authentication:
cd utils
python setup_yahoo_auth.pyFor Claude Desktop, add to your claude_desktop_config.json:
{
"mcpServers": {
"fantasy-football": {
"command": "python",
"args": ["/path/to/fantasy_football_multi_league.py"]
}
}
}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.