We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d50d95 commit 02504b6Copy full SHA for 02504b6
samples/kotlin-mcp-server/src/main/kotlin/Main.kt
@@ -91,7 +91,7 @@ fun configureServer(): Server {
91
92
// Add a tool
93
server.addTool(
94
- name = "Test io.modelcontextprotocol.kotlin.sdk.Tool",
+ name = "kotlin-sdk-tool",
95
description = "A test tool",
96
inputSchema = Tool.Input()
97
) { request ->
@@ -128,7 +128,6 @@ fun runMcpServerUsingStdio() {
128
129
runBlocking {
130
server.connect(transport)
131
- println("Server running on stdio")
132
val done = Job()
133
server.onCloseCallback = {
134
done.complete()
0 commit comments