{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://theodacity.com/.well-known/mcp/server-card.schema.json",
  "title": "MCP Server Card",
  "type": "object",
  "required": [
    "name",
    "title",
    "version",
    "description",
    "transport",
    "capabilities"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "title": {
      "type": "string"
    },
    "version": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "transport": {
      "type": "object",
      "required": [
        "type",
        "url"
      ],
      "properties": {
        "type": {
          "type": "string"
        },
        "endpoint": {
          "type": "string",
          "format": "uri"
        },
        "url": {
          "type": "string",
          "format": "uri"
        },
        "methods": {
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      },
      "additionalProperties": true
    },
    "capabilities": {
      "type": "object"
    }
  },
  "additionalProperties": true
}
