add
Compute the sum of two numbers using a simple API. Input two numeric values, and the MCP Add Server processes the addition, returning the result for seamless integration into workflows.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
a | Yes | 第一个加数 | |
b | Yes | 第二个加数 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"a": {
"description": "第一个加数",
"type": "number"
},
"b": {
"description": "第二个加数",
"type": "number"
}
},
"required": [
"a",
"b"
],
"type": "object"
}