{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "tools": [ // Tools列表
      {
      "name": "sum_numbers", // method name，唯一标识符
      "description": "Add two numbers together.", // tool调用说明，很重要，需要让模型能够从语义角度理解tool的作用，从而在实际任务中选择合适的tool
      "inputSchema": { // 输入结构
        "type": "object",
        "properties": {
          "a": { // 参数名，大小写敏感
            "title": "A",
            "type": "integer"  // 参数的数据类型
          },
          "b": { 
            "title": "B",
            "type": "integer"
          }
        },
        "required": [ // 必填参数
          "a",
          "b"
        ],
        "title": "sum_numbersArguments"
      },
      "outputSchema": { // 输出结构
        "type": "object",
        "properties": {
          "result": {
            "title": "Result",
            "type": "integer"
          }
        },
        "required": [
          "result"
        ],
        "title": "sum_numbersOutput"
      }
    }
    ],
    "nextCursor": "next-page-cursor"
  }
}
