add
Sum two integers by entering values for 'a' and 'b'. This tool simplifies basic addition for users on the MCP Boilerplate Server.
Instructions
Add two numbers together
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| a | Yes | ||
| b | Yes |
Input Schema (JSON Schema)
{
"properties": {
"a": {
"title": "A",
"type": "integer"
},
"b": {
"title": "B",
"type": "integer"
}
},
"required": [
"a",
"b"
],
"type": "object"
}