Files
mcp-server-cli/src/mcp_server_cli/templates/tool_template.yaml
7000pctAUTO bad94cab64
Some checks failed
CI / test (push) Has been cancelled
fix: resolve CI/CD issues - all tests pass locally
2026-02-05 13:42:28 +00:00

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)}}