17 lines
418 B
YAML
17 lines
418 B
YAML
name: {{tool_name}}
|
|
description: {{tool_description}}
|
|
|
|
input_schema:
|
|
type: object
|
|
properties:
|
|
{% for param in parameters %}
|
|
{{param.name}}:
|
|
type: {{param.type}}
|
|
description: {{param.description}}
|
|
{% if param.required %}required: true{% endif %}
|
|
{% endfor %}
|
|
|
|
annotations:
|
|
read_only_hint: {{read_only_hint | default(false)}}
|
|
destructive_hint: {{destructive_hint | default(false)}}
|