Record
tool-annotations
Hints about tool behavior
record tool-annotations {
title: option<string>,
read-only-hint: option<bool>,
destructive-hint: option<bool>,
idempotent-hint: option<bool>,
open-world-hint: option<bool>,
}Fields
| Name | Type | Description |
|---|---|---|
| title | option<string> | Human-readable title for the tool |
| read-only-hint | option<bool> | Tool only reads data, doesn't modify |
| destructive-hint | option<bool> | Tool may modify or delete data |
| idempotent-hint | option<bool> | Multiple calls with same input produce same result |
| open-world-hint | option<bool> | Tool may access external resources |