get_app
Retrieve detailed information about a Glide app by providing its unique appId, enabling efficient management and interaction with app data using the Glide API MCP Server.
Instructions
Get information about a Glide app
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| appId | Yes | ID of the Glide app |
Implementation Reference
- src/index.ts:291-297 (handler)Handler implementation for the 'get_app' tool. Extracts appId from arguments, calls the Glide API client's makeRequest method with GET /apps/{appId}, and returns the JSON-stringified result.case 'get_app': { const { appId } = request.params.arguments as { appId: string }; const result = await this.apiClient.makeRequest('GET', `/apps/${appId}`); return { content: [{ type: 'text', text: JSON.stringify(result, null, 2) }], }; }
- src/index.ts:138-151 (schema)Tool schema definition including name, description, and input schema requiring 'appId' string for the 'get_app' tool, registered in the ListTools response.{ name: 'get_app', description: 'Get information about a Glide app', inputSchema: { type: 'object', properties: { appId: { type: 'string', description: 'ID of the Glide app', }, }, required: ['appId'], }, },