Skip to content

Commit 5682bdb

Browse files
committed
Fix README.md example
1 parent b748b47 commit 5682bdb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.MD

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ McpServerOptions options = new()
151151
{
152152
Name = "echo",
153153
Description = "Echoes the input back to the client.",
154-
InputSchema = """
154+
InputSchema = JsonSerializer.Deserialize<JsonElement>("""
155155
{
156156
"type": "object",
157157
"properties": {
@@ -162,7 +162,7 @@ McpServerOptions options = new()
162162
},
163163
"required": ["message"]
164164
}
165-
""",
165+
"""),
166166
}
167167
]
168168
};

0 commit comments

Comments
 (0)