Glide API MCP Server

set_api_version

Set the Glide API version and authentication to use

Input Schema

NameRequiredDescriptionDefault
apiKeyYesAPI key for authentication
versionYesAPI 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" }