add_two_numbers
Add two specified numbers together to calculate their sum. This tool is part of the MCP Server Deepdive, designed for straightforward numerical operations.
Instructions
Adds two numbers together.
Args:
a -- the first number
b -- the second number
Returns:
The sum of a and b
Input Schema
Name | Required | Description | Default |
---|---|---|---|
a | Yes | ||
b | Yes |
Input Schema (JSON Schema)
{
"properties": {
"a": {
"title": "a",
"type": "string"
},
"b": {
"title": "b",
"type": "string"
}
},
"required": [
"a",
"b"
],
"title": "add_two_numbersArguments",
"type": "object"
}