Provides real-time access to Android notifications via Termux, enabling monitoring, retrieval, and filtering of system-wide notifications from all installed apps.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Termux Notification List MCP Servershow me my latest notifications"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Termux Notification List MCP Server
A Model Context Protocol (MCP) server that provides access to Android notifications via Termux, enabling AI agents to monitor and read Android notifications in real-time.
Features
Real-time notification monitoring: Stream new notifications as they arrive
Current notification retrieval: Get a snapshot of all active notifications
Filtering capabilities: Filter notifications by package name or limit results
Clean notification data: Structured JSON output with all notification metadata
Prerequisites
Android device with Termux installed
Termux API app installed and configured
Node.js 18+ in Termux environment
Proper permissions for notification access
Setup Termux Environment
Install Termux and Termux:API from F-Droid or Google Play
Install required packages in Termux:
pkg update && pkg upgrade pkg install nodejs termux-apiGrant notification access permissions to Termux:API in Android settings
Installation
npm install termux-notification-list-mcpOr build from source:
git clone <repository-url>
cd termux-notification-list-mcp
npm install
npm run buildUsage
As MCP Server (stdio)
Run the server directly:
npx termux-notification-list-mcpOr use the built version:
node dist/stdio.jsAs SSE Server
The package can also run as an SSE server for web-based MCP clients:
npx termux-notification-list-mcp-sseOr use the built version:
node dist/sse.jsThe SSE server listens on port 3000 by default, configurable via PORT environment variable.
Security Configuration
The SSE server includes several security features for remote access:
Environment Variables
MCP_AUTH_TOKEN: Bearer token for authentication (required for production)MCP_BASIC_USER: Username for HTTP Basic AuthenticationMCP_BASIC_PASS: Password for HTTP Basic AuthenticationALLOWED_ORIGINS: Comma-separated list of allowed CORS origins (default:http://localhost:3000)PORT: Server port (default: 3000)
Authentication
The server supports Bearer token, HTTP Basic Authentication, and query parameter authentication:
Bearer Token Authentication:
curl -H "Authorization: Bearer your-token" https://your-server:3000/sseQuery Parameter Authentication (for EventSource/SSE):
curl "https://your-server:3000/sse?token=your-token"
# Or in JavaScript EventSource:
# new EventSource('https://your-server:3000/sse?token=your-token')HTTP Basic Authentication:
curl -u username:password https://your-server:3000/sseOr with explicit header:
curl -H "Authorization: Basic $(echo -n 'username:password' | base64)" https://your-server:3000/sseConfiguration:
# Bearer token
export MCP_AUTH_TOKEN=your-secure-token
# Basic auth
export MCP_BASIC_USER=admin
export MCP_BASIC_PASS=secure-passwordYou can enable both authentication methods simultaneously for maximum compatibility.
Security Features
Rate Limiting: 100 requests per 15 minutes per IP
CORS Protection: Configurable allowed origins
Input Validation: JSON payload validation
Helmet Security Headers: XSS protection, HSTS, CSP
TLS 1.2+: Strong cipher suites for HTTPS
Error Handling: Secure error responses without information leakage
Running as a Background Service in Termux
To run the SSE server indefinitely as a background service using runit:
Automated Setup
Run the provided setup script:
wget https://raw.githubusercontent.com/faisalhakim47/termux-notification-list-mcp/main/setup-service.sh
chmod +x setup-service.sh
./setup-service.shNote: After running the setup script, restart your Termux session or run source $PREFIX/etc/profile to use service management commands.
Manual Setup
Install termux-services:
pkg install termux-servicesInstall the package globally:
npm install -g termux-notification-list-mcpCreate the service directory:
mkdir -p $PREFIX/var/service/termux-notification-mcpCreate the run script:
cat > $PREFIX/var/service/termux-notification-mcp/run << 'EOF' #!/bin/sh exec termux-notification-list-mcp-sse EOF chmod +x $PREFIX/var/service/termux-notification-mcp/runEnable and start the service:
sv-enable termux-notification-mcp
The service will now run automatically and restart if it crashes. You can check its status with:
source $PREFIX/etc/profile # If not already done
sv status termux-notification-mcpStop the service with:
sv down termux-notification-mcpRestart the service with:
sv restart termux-notification-mcpConfiguration for MCP Clients
Add to your MCP client configuration (e.g., Claude Desktop):
{
"mcpServers": {
"termux-notifications": {
"command": "npx",
"args": ["termux-notification-list-mcp"]
}
}
}For SSE clients, connect to http://localhost:3000/sse
Available Tools
waitForNotification
Start monitoring for new Android notifications. Returns immediately and sends notifications via server events as they arrive.
Parameters:
timeout(optional): Number of seconds to monitor before automatically stopping
Example:
// Monitor indefinitely
await client.callTool({
name: 'waitForNotification',
arguments: {}
});
// Monitor for 30 seconds
await client.callTool({
name: 'waitForNotification',
arguments: { timeout: 30 }
});stopWaitingForNotification
Stop monitoring for new notifications.
Parameters: None
Example:
await client.callTool({
name: 'stopWaitingForNotification',
arguments: {}
});getCurrentNotifications
Retrieve all currently active Android notifications.
Parameters:
packageName(optional): Filter notifications by specific app package namelimit(optional): Limit the number of notifications returned (1-100)
Example:
// Get all notifications
await client.callTool({
name: 'getCurrentNotifications',
arguments: {}
});
// Get notifications from a specific app
await client.callTool({
name: 'getCurrentNotifications',
arguments: { packageName: 'com.bca.mybca.omni.android' }
});
// Get first 5 notifications
await client.callTool({
name: 'getCurrentNotifications',
arguments: { limit: 5 }
});Notification Data Structure
Each notification contains the following fields:
interface Notification {
id: number; // Unique notification ID
tag: string; // Notification tag
key: string; // Unique notification key
group: string; // Notification group
packageName: string; // App package name that created the notification
title: string; // Notification title
content: string; // Notification content/body
when: string; // Timestamp when notification was created
}Server Events
The server sends real-time notifications via MCP's notification system:
New Notification Event: Sent when
waitForNotificationis active and a new notification arrivesError Events: Sent when monitoring encounters errors
Best Practices
Monitoring Lifecycle: Always call
stopWaitingForNotificationwhen done monitoring to free resourcesError Handling: Handle cases where
termux-notification-listcommand is not availablePrivacy: Be mindful that this tool can access all Android notifications - implement appropriate access controls
Performance: Use
limitparameter when you only need recent notifications
Security Considerations
This server provides access to all Android notifications, which may contain sensitive information
Ensure proper authentication and authorization when deploying
Consider implementing filtering or access controls for production use
Follow the principle of least privilege
Troubleshooting
termux-notification-list command not found
Ensure Termux:API is installed
Verify
termux-apipackage is installed:pkg install termux-apiCheck that notification permissions are granted in Android settings
No notifications received
Verify Termux:API has notification access permissions
Check that there are active notifications to read
Ensure the monitoring is actually started with
waitForNotification
Permission denied errors
Grant all requested permissions to Termux:API in Android settings
Restart Termux after granting permissions
Development
Building
npm run buildTesting
npm testRunning in Development
npx tsx app/cli.tsLicense
FSL-1.1-MIT - See LICENSE file for details.