{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ToolAnnotations", "title": "ToolAnnotations", "properties": { "title": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Title" }, "readOnlyHint": { "anyOf": [ { "type": "boolean" }, { "type": "null" } ], "title": "Readonlyhint" }, "destructiveHint": { "anyOf": [ { "type": "boolean" }, { "type": "null" } ], "title": "Destructivehint" }, "idempotentHint": { "anyOf": [ { "type": "boolean" }, { "type": "null" } ], "title": "Idempotenthint" }, "openWorldHint": { "anyOf": [ { "type": "boolean" }, { "type": "null" } ], "title": "Openworldhint" } }, "additionalProperties": true, "type": "object", "description": "Additional properties describing a Tool to clients.\n\nNOTE: all properties in ToolAnnotations are **hints**.\nThey are not guaranteed to provide a faithful description of\ntool behavior (including descriptive properties like `title`).\n\nClients should never make tool use decisions based on ToolAnnotations\nreceived from untrusted servers." }