Skip to content

fix: Remove @SerialName annotation for inputSchema #105

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 27, 2025
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
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ package io.modelcontextprotocol.kotlin.sdk
import io.modelcontextprotocol.kotlin.sdk.shared.McpJson
import kotlinx.serialization.EncodeDefault
import kotlinx.serialization.ExperimentalSerializationApi
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
import kotlinx.serialization.json.JsonElement
import kotlinx.serialization.json.JsonObject
Expand Down Expand Up @@ -1046,7 +1045,6 @@ public data class Tool(
/**
* A JSON object defining the expected parameters for the tool.
*/
@SerialName("input_schema")
val inputSchema: Input,
) {
@Serializable
Expand Down
2 changes: 1 addition & 1 deletion src/commonTest/kotlin/ToolSerializationTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class ToolSerializationTest {
{
"name": "get_weather",
"description": "Get the current weather in a given location",
"input_schema": {
"inputSchema": {
"type": "object",
"properties": {
"location": {
Expand Down
Loading