add
Add two integers together using this MCP server tool for mathematical calculations and arithmetic operations.
Instructions
Adds two integers.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| x | Yes | ||
| y | Yes |
Input Schema (JSON Schema)
{
"properties": {
"x": {
"title": "X",
"type": "integer"
},
"y": {
"title": "Y",
"type": "integer"
}
},
"required": [
"x",
"y"
],
"title": "addArguments",
"type": "object"
}