Genkit MCP

Official
Apache 2.0
128
1,166

add

Adds two numbers

Input Schema

NameRequiredDescriptionDefault
aYesFirst number
bYesSecond number

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "a": { "description": "First number", "type": "number" }, "b": { "description": "Second number", "type": "number" } }, "required": [ "a", "b" ], "type": "object" }