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
| Name | Required | Description | Default |
|---|---|---|---|
| app_id | Yes | The app ID (app_...) |
Implementation Reference
- index.js:452-455 (handler)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"], }, },