add
Perform addition of two integers using the MCP Server Demo tool. Input values for a and b, and get the sum instantly, simplifying basic calculations for AI-assisted workflows.
Instructions
Add two numbers
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"
],
"title": "addArguments",
"type": "object"
}