├── .claude └── commands │ └── commit.md ├── .gitignore ├── .idea ├── .gitignore ├── AndroidProjectSystem.xml ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── gradle.xml ├── kotlinc.xml ├── misc.xml └── vcs.xml ├── CLAUDE.md ├── LICENSE ├── README.md ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle.kts └── src └── main ├── kotlin └── io │ └── devexpert │ ├── main.kt │ ├── mcp │ └── PlayStoreMcpServer.kt │ ├── playstore │ ├── PlayStoreClient.kt │ ├── PlayStoreModels.kt │ └── PlayStoreService.kt │ ├── tools │ └── PlayStoreTools.kt │ └── transport │ └── StdioTransport.kt └── resources └── logback.xml /.claude/commands/commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devexpert-io/play-store-mcp/HEAD/.claude/commands/commit.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devexpert-io/play-store-mcp/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devexpert-io/play-store-mcp/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/AndroidProjectSystem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devexpert-io/play-store-mcp/HEAD/.idea/AndroidProjectSystem.xml -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devexpert-io/play-store-mcp/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devexpert-io/play-store-mcp/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devexpert-io/play-store-mcp/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devexpert-io/play-store-mcp/HEAD/.idea/kotlinc.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devexpert-io/play-store-mcp/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devexpert-io/play-store-mcp/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devexpert-io/play-store-mcp/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devexpert-io/play-store-mcp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devexpert-io/play-store-mcp/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official 2 | -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devexpert-io/play-store-mcp/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devexpert-io/play-store-mcp/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devexpert-io/play-store-mcp/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devexpert-io/play-store-mcp/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devexpert-io/play-store-mcp/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- 1 | rootProject.name = "play-store-mcp" 2 | 3 | enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS") -------------------------------------------------------------------------------- /src/main/kotlin/io/devexpert/main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devexpert-io/play-store-mcp/HEAD/src/main/kotlin/io/devexpert/main.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/devexpert/mcp/PlayStoreMcpServer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devexpert-io/play-store-mcp/HEAD/src/main/kotlin/io/devexpert/mcp/PlayStoreMcpServer.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/devexpert/playstore/PlayStoreClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devexpert-io/play-store-mcp/HEAD/src/main/kotlin/io/devexpert/playstore/PlayStoreClient.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/devexpert/playstore/PlayStoreModels.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devexpert-io/play-store-mcp/HEAD/src/main/kotlin/io/devexpert/playstore/PlayStoreModels.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/devexpert/playstore/PlayStoreService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devexpert-io/play-store-mcp/HEAD/src/main/kotlin/io/devexpert/playstore/PlayStoreService.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/devexpert/tools/PlayStoreTools.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devexpert-io/play-store-mcp/HEAD/src/main/kotlin/io/devexpert/tools/PlayStoreTools.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/devexpert/transport/StdioTransport.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devexpert-io/play-store-mcp/HEAD/src/main/kotlin/io/devexpert/transport/StdioTransport.kt -------------------------------------------------------------------------------- /src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devexpert-io/play-store-mcp/HEAD/src/main/resources/logback.xml --------------------------------------------------------------------------------