Skip to main content
The acp-kotlin-sdk provides implementations of both sides of the Agent Client Protocol that you can use to build your own agent server or client. It currently supports JVM, other targets are in progress. To get started, add the repository to your build file:
repositories {
    mavenCentral()
}
Add the dependency:
dependencies {
    implementation("com.agentclientprotocol:acp:0.1.0-SNAPSHOT")
}
The sample demonstrates how to implement both sides of the protocol.
I