N
Notification
Control and read Android phone notifications via a local MCP server on-device.
Share:
About
Control and read Android phone notifications via a local MCP server on-device.
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
send_message
Post a message to a channel or user
list_channels
List channels the bot can access
search_messages
Search messages by query and date range
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about Notification.
- What is the Notification MCP and what does it do?
- The Notification Model Context Protocol (MCP) server enables control and reading of Android phone notifications directly on the device. It provides a local interface for managing your phone's notification system. This allows for integration with other applications or services that can then interact with your notifications.
- Does the Notification MCP require any API keys or credentials?
- No, the Notification MCP uses an 'Auth type: none' configuration. It does not require API keys, OAuth, or other credentials for operation. This simplifies its setup and integration with compatible client applications.
- How can I install the Notification MCP on my Android device?
- The Notification MCP runs locally on your Android device. Installation typically involves deploying the server application directly to the phone. Specific instructions on how to install and configure it in a client like Claude Desktop, Cursor, or Cline would depend on the client's integration methods for local MCP servers.
- What are the primary capabilities of the Notification MCP?
- The Notification MCP's primary capabilities are to control and read Android phone notifications. This includes accessing notification content, dismissing notifications, and potentially creating custom notifications, though specific tools are not listed. The 'stdio' transport implies interaction via standard input/output streams.
- Are there any known limitations or prerequisites for using the Notification MCP?
- A key prerequisite for the Notification MCP is an Android phone, as it operates on-device to access notifications. A limitation is that its functionality is confined to the specific Android device where it is installed. It does not provide remote notification access across multiple devices.
- What is the cost associated with using the Notification MCP?
- The Notification MCP appears to be an open-source project hosted on GitHub, implying no direct cost for the server software itself. However, any associated costs for the Android device, data usage, or client applications are separate and depend on your specific setup.
Install Notification
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"notification": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-notification"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"notification": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-notification"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"notification": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-notification"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.