feat(mcp-server): enable idempotentHint by default

Changed the `idempotentHint` annotation from `false` to `true` in the MCP server configuration. This enables idempotent behavior hints for relevant operations.
This commit is contained in:
2026-04-14 13:04:30 +05:30
parent 07a4d4957d
commit 60582fc6ae
+1 -1
View File
@@ -153,7 +153,7 @@ async function main() {
outputSchema: evaluateOutputSchema, outputSchema: evaluateOutputSchema,
annotations: { annotations: {
readOnlyHint: true, readOnlyHint: true,
idempotentHint: false, idempotentHint: true,
openWorldHint: false, openWorldHint: false,
}, },
}, },