Mohammad Sharaf Ali
09/16/2025, 2:24 PMericbirdsall
09/18/2025, 2:40 PMMohammad Sharaf Ali
09/18/2025, 2:42 PMDeveloper mode
in ChatGPT under Profile (Your Name) -> Settings -> Connectors -> Advanced settings
.Matt Bernstein
09/22/2025, 9:04 PMMohammad Sharaf Ali
09/23/2025, 6:25 AMBryce Krah
09/23/2025, 5:39 PMMohammad Sharaf Ali
09/25/2025, 8:19 AM{
"tools": [
{
"name": "add",
"description": "Add two numbers together",
"inputSchema": {
"type": "object",
"properties": {
"a": {
"type": "number",
"description": "First addend"
},
"b": {
"type": "number",
"description": "Second addend"
}
},
"required": [
"a",
"b"
],
"nullable": []
},
"outputSchema": {
"type": "object",
"properties": {
"result": {
"type": "number",
"description": "Value of adding the two input numbers"
},
"error": {
"type": "string",
"description": "Error message if execution fails"
}
},
"required": [
"result"
],
"nullable": [
"error"
]
},
"annotations": {
"title": "Add Numbers",
"readOnlyHint": true,
"idempotentHint": true,
"openWorldHint": false
}
}
]
}