set_api_version
Set the Glide API version and authentication key to enable secure, type-safe interactions and manage app data or perform CRUD operations via the Glide API MCP Server.
Instructions
Set the Glide API version and authentication to use
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| apiKey | Yes | API key for authentication | |
| version | Yes | API version to use | 
Input Schema (JSON Schema)
{
  "properties": {
    "apiKey": {
      "description": "API key for authentication",
      "type": "string"
    },
    "version": {
      "description": "API version to use",
      "enum": [
        "v1",
        "v2"
      ],
      "type": "string"
    }
  },
  "required": [
    "version",
    "apiKey"
  ],
  "type": "object"
}