{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "description": "EXPERIMENTAL - read metadata for specific apps/connectors.",
  "properties": {
    "appIds": {
      "description": "App ids to read. The server accepts at most 100 ids and deduplicates repeated ids while preserving their first-request order.",
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "includeTools": {
      "description": "When true, include display-only public tool summaries in the returned metadata.",
      "type": "boolean"
    },
    "threadId": {
      "description": "Optional loaded thread id used to evaluate effective app configuration.",
      "type": [
        "string",
        "null"
      ]
    }
  },
  "required": [
    "appIds"
  ],
  "title": "AppsReadParams",
  "type": "object"
}