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"],
      },
    },
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool retrieves details but doesn't cover critical aspects like whether it's a read-only operation, authentication requirements, error handling (e.g., for invalid app IDs), rate limits, or response format. This is a significant gap for a tool with no annotation coverage.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence with zero waste. It front-loads the core purpose ('Get details for a specific app') and adds specific inclusions ('configuration and notification settings') without unnecessary elaboration. Every word earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (1 parameter, 100% schema coverage) but lack of annotations and output schema, the description is incomplete. It doesn't address behavioral traits like safety, response format, or error conditions, which are crucial for an agent to use it correctly. The description alone is insufficient for reliable invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, with the single parameter 'app_id' fully documented in the schema as 'The app ID (app_...)'. The description adds no additional parameter semantics beyond what the schema provides, such as examples or constraints. Baseline 3 is appropriate since the schema handles the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose with a specific verb ('Get') and resource ('app details'), specifying what details are included ('configuration and notification settings'). It distinguishes from sibling 'list_apps' by focusing on a single app rather than listing multiple. However, it doesn't explicitly contrast with other get_* tools like 'get_conversation' or 'get_customer' beyond the resource type.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., needing an app ID), exclusions, or comparisons to siblings like 'list_apps' for browsing or other get_* tools for different resources. Usage is implied by the name and description but not explicitly stated.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

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

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