FantasyPremierLeague

このプロジェクトはKotlin Multiplatformを使用しており、Android、iOS、デスクトップで動作するアプリケーションを開発しています。Jetpack ComposeやSwiftUIを利用し、Ktorを用いたAPIリクエストやRoomによるデータ永続化を行っています。多様なプラットフォームに対応しているため、開発者にとって非常に有用です。

GitHubスター

557

ユーザー評価

未評価

お気に入り

0

閲覧数

25

フォーク

60

イシュー

8

README
Fantasy Premier League

kotlin-version

Kotlin Multiplatform project with Jetpack Compose, Compose for Desktop and SwiftUI clients (and using Ktor for remote API requests and Room for persistence). Currently running on:

  • Android (Jetpack Compose)
  • iOS (SwiftUI)
  • Desktop (Compose for Desktop)
  • Kotlin Notebook
  • MCP Server

Related posts:

Building

This project currently uses iOS16 features (e.g. Swift Charts) so requires use of at least Xcode 14.

Screenshots
Android

|

iOS

|

Desktop
Screenshot 2023-09-14 at 17 07 32
Kotlin Notebook
Screenshot 2024-04-06 at 11 03 15 Screenshot 2024-04-06 at 11 03 36

MCP Server

The mcp-server module uses the Kotlin MCP SDK to expose an MCP tools endpoint (returning player/fixture info) that
can for example be plugged in to Claude Desktop as shown below. That module uses same KMP shared code.

Screenshot 2025-07-16 at 21 17 33

To integrate the MCP server with Claude Desktop for example you need to firstly run gradle shadowJar task and then select "Edit Config" under Developer Settings and add something
like the following (update with your path)

{
  "mcpServers": {
    "kotlin-peopleinspace": {
      "command": "java",
      "args": [
        "-jar",
        "/Users/john.oreilly/github/FantasyPremierLeague/mcp-server/build/libs/serverAll.jar",
        "--stdio"
      ]
    }
  }
}
Full set of Kotlin Multiplatform/Compose/SwiftUI samples