{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$ref": "#/definitions/McpServerManifest",
  "definitions": {
    "ExtensionVisibility": {
      "type": "string",
      "enum": ["public", "private"],
      "title": "Extension Visibility",
      "description": "Intended whole-Extension Registry visibility. Establishes new Extensions and must match established Extensions."
    },
    "PublishOptions": {
      "type": "object",
      "properties": {
        "visibility": {
          "anyOf": [{ "$ref": "#/definitions/ExtensionVisibility" }, { "type": "null" }]
        },
        "ignore": {
          "anyOf": [
            {
              "type": "array",
              "uniqueItems": true,
              "description": "Registry-only archive exclusions matched against package-relative POSIX paths. Matching files are omitted only from published archives; local, Git, workspace, import, fork, and agent projection behavior is unchanged. `*` is the only wildcard, is case-sensitive, and spans `/`. An explicit empty array records a reviewed publish-all decision.",
              "examples": [[], ["evals/*"]],
              "items": { "type": "string", "minLength": 1 }
            },
            { "type": "null" }
          ]
        }
      },
      "additionalProperties": false,
      "title": "Publish Options",
      "description": "Publication policy and archive options for this extension."
    },
    "Handle": {
      "type": "string",
      "pattern": "^@[a-z0-9_](?:[a-z0-9_-]*[a-z0-9_])?$",
      "title": "Handle",
      "description": "A unique username or organization name starting with @, like @my-org.",
      "examples": ["@my-org", "@username"]
    },
    "Version": {
      "type": "string",
      "pattern": "^(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$",
      "title": "Version",
      "description": "A semver version like 1.0.0. Ranges are not allowed here.",
      "examples": ["1.0.0", "2.3.1", "0.1.0-beta.1"]
    },
    "Repository": {
      "anyOf": [
        {
          "type": "string",
          "examples": ["https://github.com/acme/code-review", "github:acme/code-review"],
          "format": "uri-reference"
        },
        {
          "type": "object",
          "properties": {
            "type": {
              "anyOf": [
                {
                  "type": "string",
                  "minLength": 1,
                  "description": "Version control system (e.g., `git`).",
                  "examples": ["git"]
                },
                { "type": "null" }
              ]
            },
            "url": {
              "type": "string",
              "allOf": [
                {
                  "minLength": 1,
                  "description": "Repository URL.",
                  "examples": ["https://github.com/acme/code-review"],
                  "format": "uri"
                }
              ]
            },
            "directory": {
              "anyOf": [
                {
                  "type": "string",
                  "minLength": 1,
                  "description": "Subdirectory within the repository, for monorepo publishers.",
                  "examples": ["packages/code-review"]
                },
                { "type": "null" }
              ]
            }
          },
          "required": ["url"],
          "additionalProperties": false
        }
      ],
      "title": "Repository",
      "description": "Source repository for this extension. Accepts a URL string (or `host:owner/repo` shorthand) or an object with `type`, `url`, and optional `directory`."
    },
    "Bugs": {
      "anyOf": [
        {
          "type": "string",
          "examples": ["https://github.com/acme/code-review/issues"],
          "format": "uri"
        },
        {
          "type": "object",
          "properties": {
            "url": {
              "anyOf": [
                {
                  "type": "string",
                  "allOf": [
                    {
                      "minLength": 1,
                      "description": "Issue tracker URL.",
                      "examples": ["https://github.com/acme/code-review/issues"],
                      "format": "uri"
                    }
                  ]
                },
                { "type": "null" }
              ]
            },
            "email": {
              "anyOf": [
                {
                  "type": "string",
                  "allOf": [
                    {
                      "minLength": 1,
                      "description": "Contact email for bug reports.",
                      "examples": ["bugs@acme.dev"],
                      "format": "email"
                    }
                  ]
                },
                { "type": "null" }
              ]
            }
          },
          "additionalProperties": false
        }
      ],
      "title": "Bugs",
      "description": "Where to report bugs against this extension. Accepts a URL string or an object with optional `url` and `email`."
    },
    "Author": {
      "type": "object",
      "properties": {
        "name": { "type": "string" },
        "email": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
        "url": { "anyOf": [{ "type": "string" }, { "type": "null" }] }
      },
      "required": ["name"],
      "additionalProperties": false,
      "title": "Author",
      "description": "A person credited as a creator or maintainer of this extension."
    },
    "PackageIdentityPurl": {
      "type": "string",
      "minLength": 1,
      "pattern": "^[Pp][Kk][Gg]:[a-zA-Z][a-zA-Z0-9.+-]*\\/.+$",
      "title": "Package Identity Purl",
      "description": "A Package URL (purl) identity for a companion package. Companion package purls are identities, not pins: omit the purl @version segment and put compatibility constraints in versionRange.",
      "examples": ["pkg:npm/react", "pkg:pypi/requests", "pkg:cargo/serde"]
    },
    "VersRangeEncoded": {
      "type": "string",
      "minLength": 1,
      "examples": ["vers:npm/>=18.0.0|<19.0.0", "vers:pypi/>=2.31.0", "vers:cargo/>=1.0.0"]
    },
    "CompanionPackage": {
      "type": "object",
      "properties": {
        "purl": { "$ref": "#/definitions/PackageIdentityPurl" },
        "versionRange": {
          "anyOf": [{ "$ref": "#/definitions/VersRangeEncoded" }, { "type": "null" }]
        }
      },
      "required": ["purl"],
      "additionalProperties": false,
      "title": "Companion Package",
      "description": "A companion package purl identity with an optional VERS compatibility range."
    },
    "PackSpec": {
      "type": "string",
      "minLength": 1,
      "pattern": "^(@[a-z0-9_](?:[a-z0-9_-]*[a-z0-9_])?)\\/packs\\/([a-z0-9](?:[a-z0-9-]{0,62}[a-z0-9])?)(?:@.+)?$",
      "title": "Pack Spec",
      "description": "Pack reference with an optional version constraint suffix.",
      "examples": ["@acme/packs/typescript", "@acme/packs/typescript@^1.0.0"]
    },
    "ExtensionName": {
      "type": "string",
      "minLength": 1,
      "pattern": "^[a-z0-9](?:[a-z0-9-]{0,62}[a-z0-9])?$",
      "title": "Extension Name",
      "description": "Short name for this MCP server within its owner namespace. Combined with owner, forms the FQN @owner/mcps/<name>.",
      "examples": ["my-skill", "code-review", "prettier"]
    },
    "McpRegistryStdioTransport": {
      "type": "object",
      "properties": { "type": { "type": "string", "enum": ["stdio"] } },
      "required": ["type"],
      "additionalProperties": false,
      "title": "MCP Registry Stdio Transport"
    },
    "McpRegistryKeyValueInput": {
      "type": "object",
      "properties": {
        "choices": {
          "anyOf": [{ "type": "array", "items": { "type": "string" } }, { "type": "null" }]
        },
        "default": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
        "description": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
        "format": {
          "anyOf": [
            { "type": "string", "enum": ["string", "number", "boolean", "filepath"] },
            { "type": "null" }
          ]
        },
        "isRequired": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
        "isSecret": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
        "placeholder": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
        "value": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
        "variables": { "anyOf": [{ "type": "object" }, { "type": "null" }] },
        "name": { "type": "string" }
      },
      "required": ["name"],
      "additionalProperties": false,
      "title": "MCP Registry Key/Value Input",
      "description": "Named header or environment variable input."
    },
    "McpRegistryStreamableHttpTransport": {
      "type": "object",
      "properties": {
        "type": { "type": "string", "enum": ["streamable-http"] },
        "url": { "type": "string", "minLength": 1, "pattern": "^https?:\\/\\/[^\\s]+$" },
        "headers": {
          "anyOf": [
            { "type": "array", "items": { "$ref": "#/definitions/McpRegistryKeyValueInput" } },
            { "type": "null" }
          ]
        }
      },
      "required": ["type", "url"],
      "additionalProperties": false,
      "title": "MCP Registry Streamable HTTP Transport"
    },
    "McpRegistrySseTransport": {
      "type": "object",
      "properties": {
        "type": { "type": "string", "enum": ["sse"] },
        "url": { "type": "string", "minLength": 1, "pattern": "^https?:\\/\\/[^\\s]+$" },
        "headers": {
          "anyOf": [
            { "type": "array", "items": { "$ref": "#/definitions/McpRegistryKeyValueInput" } },
            { "type": "null" }
          ]
        }
      },
      "required": ["type", "url"],
      "additionalProperties": false,
      "title": "MCP Registry SSE Transport"
    },
    "McpRegistryLocalTransport": {
      "anyOf": [
        { "$ref": "#/definitions/McpRegistryStdioTransport" },
        { "$ref": "#/definitions/McpRegistryStreamableHttpTransport" },
        { "$ref": "#/definitions/McpRegistrySseTransport" }
      ],
      "title": "MCP Registry Local Transport"
    },
    "McpRegistryPositionalArgument": {
      "anyOf": [
        {
          "type": "object",
          "properties": {
            "choices": {
              "anyOf": [{ "type": "array", "items": { "type": "string" } }, { "type": "null" }]
            },
            "default": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
            "description": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
            "format": {
              "anyOf": [
                { "type": "string", "enum": ["string", "number", "boolean", "filepath"] },
                { "type": "null" }
              ]
            },
            "isRequired": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
            "isSecret": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
            "placeholder": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
            "value": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
            "variables": { "anyOf": [{ "type": "object" }, { "type": "null" }] },
            "type": { "type": "string", "enum": ["positional"] },
            "isRepeated": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
            "valueHint": { "type": "string" }
          },
          "required": ["type", "valueHint"],
          "additionalProperties": false
        },
        {
          "type": "object",
          "properties": {
            "choices": {
              "anyOf": [{ "type": "array", "items": { "type": "string" } }, { "type": "null" }]
            },
            "default": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
            "description": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
            "format": {
              "anyOf": [
                { "type": "string", "enum": ["string", "number", "boolean", "filepath"] },
                { "type": "null" }
              ]
            },
            "isRequired": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
            "isSecret": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
            "placeholder": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
            "value": { "type": "string" },
            "variables": { "anyOf": [{ "type": "object" }, { "type": "null" }] },
            "type": { "type": "string", "enum": ["positional"] },
            "isRepeated": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] }
          },
          "required": ["value", "type"],
          "additionalProperties": false
        }
      ],
      "title": "MCP Registry Positional Argument",
      "description": "A positional command-line argument."
    },
    "McpRegistryNamedArgument": {
      "type": "object",
      "properties": {
        "choices": {
          "anyOf": [{ "type": "array", "items": { "type": "string" } }, { "type": "null" }]
        },
        "default": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
        "description": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
        "format": {
          "anyOf": [
            { "type": "string", "enum": ["string", "number", "boolean", "filepath"] },
            { "type": "null" }
          ]
        },
        "isRequired": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
        "isSecret": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
        "placeholder": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
        "value": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
        "variables": { "anyOf": [{ "type": "object" }, { "type": "null" }] },
        "type": { "type": "string", "enum": ["named"] },
        "name": { "type": "string" },
        "isRepeated": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] }
      },
      "required": ["type", "name"],
      "additionalProperties": false,
      "title": "MCP Registry Named Argument",
      "description": "A named command-line argument."
    },
    "McpRegistryArgument": {
      "anyOf": [
        { "$ref": "#/definitions/McpRegistryPositionalArgument" },
        { "$ref": "#/definitions/McpRegistryNamedArgument" }
      ],
      "title": "MCP Registry Argument",
      "description": "Command-line argument metadata from the MCP registry schema."
    },
    "McpRegistryPackage": {
      "type": "object",
      "properties": {
        "registryType": { "type": "string" },
        "identifier": { "type": "string" },
        "transport": { "$ref": "#/definitions/McpRegistryLocalTransport" },
        "version": { "anyOf": [{ "type": "string", "minLength": 1 }, { "type": "null" }] },
        "registryBaseUrl": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
        "runtimeHint": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
        "runtimeArguments": {
          "anyOf": [
            { "type": "array", "items": { "$ref": "#/definitions/McpRegistryArgument" } },
            { "type": "null" }
          ]
        },
        "packageArguments": {
          "anyOf": [
            { "type": "array", "items": { "$ref": "#/definitions/McpRegistryArgument" } },
            { "type": "null" }
          ]
        },
        "environmentVariables": {
          "anyOf": [
            { "type": "array", "items": { "$ref": "#/definitions/McpRegistryKeyValueInput" } },
            { "type": "null" }
          ]
        },
        "fileSha256": {
          "anyOf": [{ "type": "string", "pattern": "^[a-f0-9]{64}$" }, { "type": "null" }]
        }
      },
      "required": ["registryType", "identifier", "transport"],
      "additionalProperties": false,
      "title": "MCP Registry Package",
      "description": "Installable MCP server package distribution."
    },
    "McpRegistryInput": {
      "type": "object",
      "properties": {
        "choices": {
          "anyOf": [{ "type": "array", "items": { "type": "string" } }, { "type": "null" }]
        },
        "default": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
        "description": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
        "format": {
          "anyOf": [
            { "type": "string", "enum": ["string", "number", "boolean", "filepath"] },
            { "type": "null" }
          ]
        },
        "isRequired": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
        "isSecret": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
        "placeholder": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
        "value": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
        "variables": { "anyOf": [{ "type": "object" }, { "type": "null" }] }
      },
      "additionalProperties": false,
      "title": "MCP Registry Input",
      "description": "Input metadata from the MCP registry server.json schema."
    },
    "McpRegistryRemoteTransport": {
      "anyOf": [
        {
          "type": "object",
          "properties": {
            "type": { "type": "string", "enum": ["streamable-http"] },
            "url": { "type": "string", "minLength": 1, "pattern": "^https?:\\/\\/[^\\s]+$" },
            "headers": {
              "anyOf": [
                { "type": "array", "items": { "$ref": "#/definitions/McpRegistryKeyValueInput" } },
                { "type": "null" }
              ]
            },
            "variables": {
              "anyOf": [
                {
                  "type": "object",
                  "additionalProperties": { "$ref": "#/definitions/McpRegistryInput" }
                },
                { "type": "null" }
              ]
            }
          },
          "required": ["type", "url"],
          "additionalProperties": false
        },
        {
          "type": "object",
          "properties": {
            "type": { "type": "string", "enum": ["sse"] },
            "url": { "type": "string", "minLength": 1, "pattern": "^https?:\\/\\/[^\\s]+$" },
            "headers": {
              "anyOf": [
                { "type": "array", "items": { "$ref": "#/definitions/McpRegistryKeyValueInput" } },
                { "type": "null" }
              ]
            },
            "variables": {
              "anyOf": [
                {
                  "type": "object",
                  "additionalProperties": { "$ref": "#/definitions/McpRegistryInput" }
                },
                { "type": "null" }
              ]
            }
          },
          "required": ["type", "url"],
          "additionalProperties": false
        }
      ],
      "title": "MCP Registry Remote Transport"
    },
    "McpRegistryRepository": {
      "type": "object",
      "properties": {
        "url": { "type": "string" },
        "source": { "type": "string" },
        "id": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
        "subfolder": { "anyOf": [{ "type": "string" }, { "type": "null" }] }
      },
      "required": ["url", "source"],
      "additionalProperties": false,
      "title": "MCP Registry Repository",
      "description": "Repository metadata for an MCP server."
    },
    "McpRegistryIcon": {
      "type": "object",
      "properties": {
        "src": { "type": "string", "minLength": 1 },
        "mimeType": {
          "anyOf": [
            {
              "type": "string",
              "enum": ["image/png", "image/jpeg", "image/jpg", "image/svg+xml", "image/webp"]
            },
            { "type": "null" }
          ]
        },
        "sizes": {
          "anyOf": [
            { "type": "array", "items": { "type": "string", "pattern": "^(\\d+x\\d+|any)$" } },
            { "type": "null" }
          ]
        },
        "theme": { "anyOf": [{ "type": "string", "enum": ["light", "dark"] }, { "type": "null" }] }
      },
      "required": ["src"],
      "additionalProperties": false,
      "title": "MCP Registry Icon",
      "description": "Optional icon metadata from the MCP registry schema."
    },
    "McpRegistryServerDetail": {
      "type": "object",
      "properties": {
        "$schema": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
        "name": {
          "type": "string",
          "minLength": 1,
          "pattern": "^[a-zA-Z0-9.-]+\\/[a-zA-Z0-9._-]+$"
        },
        "description": { "type": "string", "minLength": 1 },
        "version": { "type": "string" },
        "title": { "anyOf": [{ "type": "string", "minLength": 1 }, { "type": "null" }] },
        "packages": {
          "anyOf": [
            { "type": "array", "items": { "$ref": "#/definitions/McpRegistryPackage" } },
            { "type": "null" }
          ]
        },
        "remotes": {
          "anyOf": [
            { "type": "array", "items": { "$ref": "#/definitions/McpRegistryRemoteTransport" } },
            { "type": "null" }
          ]
        },
        "repository": {
          "anyOf": [{ "$ref": "#/definitions/McpRegistryRepository" }, { "type": "null" }]
        },
        "icons": {
          "anyOf": [
            { "type": "array", "items": { "$ref": "#/definitions/McpRegistryIcon" } },
            { "type": "null" }
          ]
        },
        "websiteUrl": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
        "_meta": { "anyOf": [{ "type": "object" }, { "type": "null" }] }
      },
      "required": ["name", "description", "version"],
      "additionalProperties": false,
      "title": "MCP Registry Server Detail",
      "description": "Verbatim MCP registry server.json ServerDetail embedded in AXM mcp.json manifests."
    },
    "McpServerManifest": {
      "type": "object",
      "properties": {
        "$schema": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
        "publish": { "anyOf": [{ "$ref": "#/definitions/PublishOptions" }, { "type": "null" }] },
        "metadata": {
          "anyOf": [
            {
              "type": "object",
              "title": "Extension Metadata",
              "description": "Opaque consumer-defined JSON metadata. The compact UTF-8 JSON representation is limited to 65,536 bytes and container depth 16."
            },
            { "type": "null" }
          ]
        },
        "owner": { "$ref": "#/definitions/Handle" },
        "version": { "$ref": "#/definitions/Version" },
        "description": {
          "anyOf": [
            {
              "type": "string",
              "description": "Short, registry-facing summary of this extension shown in listings and search results."
            },
            { "type": "null" }
          ]
        },
        "keywords": {
          "anyOf": [
            {
              "type": "array",
              "examples": [["lint", "typescript", "review"]],
              "items": { "type": "string", "minLength": 1 }
            },
            { "type": "null" }
          ]
        },
        "repository": { "anyOf": [{ "$ref": "#/definitions/Repository" }, { "type": "null" }] },
        "homepage": {
          "anyOf": [
            { "type": "string", "examples": ["https://acme.dev/code-review"], "format": "uri" },
            { "type": "null" }
          ]
        },
        "license": {
          "anyOf": [
            {
              "type": "string",
              "title": "License",
              "description": "SPDX license expression, or `UNLICENSED` for proprietary code.",
              "examples": ["MIT", "Apache-2.0", "MIT OR Apache-2.0", "UNLICENSED"],
              "format": "spdx-expression"
            },
            { "type": "null" }
          ]
        },
        "bugs": { "anyOf": [{ "$ref": "#/definitions/Bugs" }, { "type": "null" }] },
        "authors": {
          "anyOf": [
            { "type": "array", "items": { "$ref": "#/definitions/Author" } },
            { "type": "null" }
          ]
        },
        "packages": {
          "anyOf": [
            {
              "type": "array",
              "description": "External ecosystem packages this extension is designed to work with, declared as identity Package URLs with optional VERS compatibility ranges.",
              "items": { "$ref": "#/definitions/CompanionPackage" }
            },
            { "type": "null" }
          ]
        },
        "enhances": {
          "anyOf": [
            {
              "type": "array",
              "uniqueItems": true,
              "description": "Soft capability enhancements used by the source. These never block installation.",
              "items": {
                "type": "string",
                "minLength": 1,
                "pattern": "^[a-z0-9](?:[a-z0-9-]*[a-z0-9])?(?::[a-z0-9](?:[a-z0-9-]*[a-z0-9])?)?$"
              }
            },
            { "type": "null" }
          ]
        },
        "requires": {
          "anyOf": [
            {
              "type": "array",
              "uniqueItems": true,
              "description": "Hard capabilities without which the extension cannot operate.",
              "items": {
                "type": "string",
                "minLength": 1,
                "pattern": "^[a-z0-9](?:[a-z0-9-]*[a-z0-9])?(?::[a-z0-9](?:[a-z0-9-]*[a-z0-9])?)?$"
              }
            },
            { "type": "null" }
          ]
        },
        "fallback": {
          "anyOf": [
            {
              "type": "string",
              "enum": ["auto", "none"],
              "description": "Whether AXM may apply platform-provided capability fallbacks. Defaults to auto.",
              "default": "auto"
            },
            { "type": "null" }
          ]
        },
        "recommendedPacks": {
          "anyOf": [
            {
              "type": "array",
              "description": "Pack recommendations and same-pack composition metadata. Entries do not install or guarantee the pack or its members.",
              "items": { "$ref": "#/definitions/PackSpec" }
            },
            { "type": "null" }
          ]
        },
        "standalone": {
          "anyOf": [
            {
              "type": "boolean",
              "description": "False means the extension requires sibling extensions that are direct members of a pack named in recommendedPacks; it does not create dependencies.",
              "default": true
            },
            { "type": "null" }
          ]
        },
        "type": { "type": "string", "enum": ["mcp-server"] },
        "name": { "$ref": "#/definitions/ExtensionName" },
        "server": { "$ref": "#/definitions/McpRegistryServerDetail" }
      },
      "required": ["owner", "version", "type", "name", "server"],
      "additionalProperties": false,
      "title": "MCP Server Manifest",
      "description": "Extension manifest file for MCP server. Registers a Model Context Protocol server that coding agents can connect to for additional tools and resources."
    }
  }
}
