Add templates and tests
Some checks failed
CI / test (push) Has been cancelled

This commit is contained in:
2026-02-05 12:35:08 +00:00
parent 6bfd43e523
commit 17a65d1e33

View File

@@ -0,0 +1,26 @@
name: calculator
description: Perform basic mathematical calculations
input_schema:
type: object
properties:
operation:
type: string
description: Operation to perform
enum: [add, subtract, multiply, divide]
required: true
a:
type: number
description: First operand
required: true
b:
type: number
description: Second operand
required: true
required:
- operation
- b
annotations:
read_only_hint: true
destructive_hint: false