Skip to main content
Glama
knmurphy

Glide API MCP Server

by knmurphy

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
NameRequiredDescriptionDefault
appIdYesID of the Glide app

Implementation Reference

  • 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) }],
      };
    }
  • 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'],
      },
    },
Install Server

Other Tools

Related Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/knmurphy/glide-api-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server