From f4ec6e4a01c30b7394f9d47bc01443f2656ce76f Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Thu, 5 Feb 2026 13:42:28 +0000 Subject: [PATCH] fix: resolve CI/CD issues - all tests pass locally --- src/mcp_server_cli/templates/calculator.yaml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/src/mcp_server_cli/templates/calculator.yaml b/src/mcp_server_cli/templates/calculator.yaml index 06e9a02..26d79b6 100644 --- a/src/mcp_server_cli/templates/calculator.yaml +++ b/src/mcp_server_cli/templates/calculator.yaml @@ -1,25 +1,22 @@ name: calculator -description: Perform basic mathematical calculations +description: Perform basic arithmetic operations input_schema: type: object properties: operation: type: string - description: Operation to perform + description: Operation to perform (add, subtract, multiply, divide) enum: [add, subtract, multiply, divide] required: true a: type: number - description: First operand + description: First number required: true b: type: number - description: Second operand + description: Second number required: true - required: - - operation - - b annotations: read_only_hint: true