FantasyPremierLeague vs everything
Side-by-side comparison to help you pick between these two MCP servers.
FantasyPremierLeague by joreilly | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 593 | ★ 85,748 |
| 30d uses | — | — |
| Score | 51 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsOther |
| 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.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
FantasyPremierLeague · Use cases
- Access Fantasy Premier League data through MCP protocol
- Integrate fantasy sports data into AI assistants
- Build multiplatform fantasy league applications
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
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"
]
}
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything