Skip to main content
Glama

dhis2_android_configure_notifications

Configure push, local, and in-app notifications for the DHIS2 Android app, including triggers like sync completion, reminders, and system messages, with provider options and customization for sound, vibration, and LED.

Instructions

Set up push notifications and local notifications for DHIS2 Android app

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
customizationNo
notificationTypesYesTypes of notifications to implement
pushProviderNoPush notification provider
schedulingNo
triggersNoNotification triggers

Implementation Reference

  • Main tool handler in the MCP server switch statement. Calls generateNotificationsConfiguration with input args and returns markdown configuration.
    case 'dhis2_android_configure_notifications': const notificationsArgs = args as any; const notificationsConfig = generateNotificationsConfiguration(notificationsArgs); return { content: [ { type: 'text', text: notificationsConfig, }, ], };
  • Generator function that produces the notifications configuration markdown based on input args. Currently a stub with placeholder content.
    export function generateNotificationsConfiguration(args: any): string { return `# DHIS2 Android Notifications Configuration Notification types: ${args.notificationTypes.join(', ')} ## Implementation details for notifications... `; }
  • Tool permission mapping: requires 'canUseMobileFeatures' permission to access.
    ['dhis2_android_configure_notifications', 'canUseMobileFeatures'],

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/Dradebo/dhis2-mcp'

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