{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://mcp.film/api/client-profiles.schema.json",
  "title": "mcp.film client setup profiles",
  "type": "object",
  "required": [
    "name",
    "description",
    "updated",
    "clients",
    "starter_examples"
  ],
  "properties": {
    "$schema": {
      "type": "string",
      "format": "uri"
    },
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "updated": {
      "type": "string"
    },
    "clients": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "id",
          "name",
          "supports_remote_url",
          "supports_stdio",
          "config_surface",
          "best_for",
          "install_strategy"
        ],
        "properties": {
          "id": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "supports_remote_url": {
            "type": "boolean"
          },
          "supports_stdio": {
            "type": "boolean"
          },
          "config_surface": {
            "type": "string"
          },
          "best_for": {
            "type": "string"
          },
          "install_strategy": {
            "type": "string"
          },
          "example": {}
        },
        "additionalProperties": true
      }
    },
    "starter_examples": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "slug",
          "name",
          "official",
          "remote",
          "auth_type",
          "remote_url",
          "remote_headers",
          "claude_code",
          "claude_desktop",
          "cursor",
          "docs"
        ],
        "properties": {
          "slug": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "official": {
            "type": "boolean"
          },
          "remote": {
            "type": "boolean"
          },
          "auth_type": {
            "type": [
              "string",
              "null"
            ]
          },
          "required_env": {
            "type": [
              "string",
              "null"
            ]
          },
          "remote_url": {
            "type": [
              "string",
              "null"
            ],
            "format": "uri"
          },
          "remote_headers": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "claude_code": {
            "type": [
              "string",
              "null"
            ]
          },
          "claude_desktop": {
            "type": [
              "object",
              "null"
            ]
          },
          "cursor": {
            "type": [
              "object",
              "null"
            ]
          },
          "docs": {
            "type": [
              "string",
              "null"
            ],
            "format": "uri"
          }
        },
        "additionalProperties": false
      }
    }
  },
  "additionalProperties": true
}