Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ dependencies {

// MCP Server (Ktor + MCP SDK)
implementation("io.modelcontextprotocol:kotlin-sdk:0.5.0")
implementation("io.ktor:ktor-server-core:3.1.3")
implementation("io.ktor:ktor-server-netty:3.1.3")
implementation("io.ktor:ktor-server-cors:3.1.3")
implementation("io.ktor:ktor-server-sse:3.1.3")
implementation("io.ktor:ktor-server-content-negotiation:3.1.3")
implementation("io.ktor:ktor-serialization-kotlinx-json:3.1.3")
implementation("io.ktor:ktor-server-core:3.5.1")
implementation("io.ktor:ktor-server-netty:3.5.1")
implementation("io.ktor:ktor-server-cors:3.5.1")
implementation("io.ktor:ktor-server-sse:3.5.1")
implementation("io.ktor:ktor-server-content-negotiation:3.5.1")
implementation("io.ktor:ktor-serialization-kotlinx-json:3.5.1")
// Phase 16: Ktor CLIENT modules (pin to 3.1.3 to match server-side Ktor family)
implementation("io.ktor:ktor-client-core:3.1.3")
implementation("io.ktor:ktor-client-cio:3.1.3")
implementation("io.ktor:ktor-client-core:3.5.1")
implementation("io.ktor:ktor-client-cio:3.5.1")
// kotlin-logging: transitive via kotlin-sdk:0.5.0 StdioClientTransport; declared explicitly to pin version
implementation("io.github.oshai:kotlin-logging-jvm:7.0.7")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.1")
Expand Down
Loading