Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {

allprojects {
group = "io.modelcontextprotocol"
version = "0.7.2-SNAPSHOT"
version = "0.7.2-alpha1"
}

dependencies {
Expand Down
1 change: 0 additions & 1 deletion buildSrc/src/main/kotlin/mcp.publishing.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ plugins {
}

mavenPublishing {
signAllPublications()
publishToMavenCentral(automaticRelease = true)

pom {
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ kotest = "6.0.3"
awaitility = "4.3.0"

# Samples
mcp-kotlin = "0.7.2-SNAPSHOT"
mcp-kotlin = "0.7.2-alpha1"
anthropic = "2.7.0"
shadow = "8.1.1"

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
@file:Suppress("ktlint:standard:no-empty-class-body", "ktlint:standard:kdoc")
/**
* # MCP Kotlin SDK
*
* A Kotlin Multiplatform implementation of the Model Context Protocol (MCP).
*
* This is the main SDK module that provides a convenient single dependency
* for all MCP functionality including:
*
* - Core protocol types and utilities ([kotlin-sdk-core])
* - Client implementations ([kotlin-sdk-client])
* - Server implementations ([kotlin-sdk-server])
*
* ## Usage
*
* Add this dependency to your project to get access to all MCP Kotlin SDK functionality:
*
* ```kotlin
* implementation("io.modelcontextprotocol:kotlin-sdk:$version")
* ```
*
* This will transitively include all core, client, and server components.
*/

package io.modelcontextprotocol.kotlin.sdk
Loading