From 1cde27be0d66292f5bdda7ec3ea92d6ffdf8c834 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Thu, 5 Feb 2026 12:35:09 +0000 Subject: [PATCH] Add templates and tests --- .../templates/tool_template.yaml | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/mcp_server_cli/templates/tool_template.yaml diff --git a/src/mcp_server_cli/templates/tool_template.yaml b/src/mcp_server_cli/templates/tool_template.yaml new file mode 100644 index 0000000..5ffef57 --- /dev/null +++ b/src/mcp_server_cli/templates/tool_template.yaml @@ -0,0 +1,25 @@ +name: my_custom_tool +description: A description of what your tool does + +input_schema: + type: object + properties: + param1: + type: string + description: Description of param1 + required: true + param2: + type: integer + description: Description of param2 + default: 10 + param3: + type: boolean + description: Optional boolean parameter + default: false + required: + - param1 + +annotations: + read_only_hint: false + destructive_hint: false + non_confidential: true