{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "protocolVersion": "2025-06-28",
    "capabilities": { // 服务器能力
      "logging": {}, // 发出结构化日志
      "prompts": {  // 提供prompt模板，让用户能够明确选择并使用提示词
        "listChanged": true // 当可用提示列表发生变化时，服务器是否会发送通知
      },
      "resources": { // 提供可读资源，例如文件、数据库schema
        "subscribe": true, // 支持订阅单个项目的变更（仅限资源）
        "listChanged": true
      },
      "tools": { // 公开可调用工具
        "listChanged": true
      }
    },
    "serverInfo": {
      "name": "ExampleServer",
      "title": "Example Server Display Name",
      "version": "1.0.0"
    },
    "instructions": "Optional instructions for the client"
  }
}
