calculate_sum
Add two numbers efficiently using a TypeScript-based MCP server tool designed for experimentation and integration with Calude Desktop and Cursor IDE.
Instructions
Add two numbers together
Input Schema
Name | Required | Description | Default |
---|---|---|---|
a | Yes | ||
b | Yes |
Input Schema (JSON Schema)
{
"properties": {
"a": {
"type": "number"
},
"b": {
"type": "number"
}
},
"required": [
"a",
"b"
],
"type": "object"
}