add
Performs addition of two numbers using a structured input schema. Designed for integration testing and MCP client development within the MCP Hello World server, ensuring reliable functionality and clear parameter requirements.
Instructions
Adds two numbers
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| a | Yes | The first number | |
| b | Yes | The second number |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"a": {
"description": "The first number",
"type": "number"
},
"b": {
"description": "The second number",
"type": "number"
}
},
"required": [
"a",
"b"
],
"type": "object"
}