Skip to main content
Glama

get_app

Retrieve app configuration and notification settings by providing the app ID to manage platform settings through the Cuti-E admin API.

Instructions

Get details for a specific app including configuration and notification settings.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
app_idYesThe app ID (app_...)

Implementation Reference

  • Handler logic for the "get_app" tool, which calls the Cuti-E API to retrieve specific app details.
    case "get_app": {
      result = await apiRequest("GET", `/v1/apps/${args.app_id}`);
      break;
    }
  • index.js:227-241 (registration)
    Registration of the "get_app" tool in the MCP server, defining its schema and description.
    {
      name: "get_app",
      description:
        "Get details for a specific app including configuration and notification settings.",
      inputSchema: {
        type: "object",
        properties: {
          app_id: {
            type: "string",
            description: "The app ID (app_...)",
          },
        },
        required: ["app_id"],
      },
    },

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/Stig-Johnny/cutie-mcp'

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