Barkme MCP Server
Provides push notifications to iOS devices via the Bark service, supporting device aliases, multiple urgency levels (passive, active, timeSensitive, critical), custom icons, URLs, and notification update/delete operations.
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., "@Barkme MCP Serversend a notification saying 'Server update complete'"
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.
Barkme MCP Server
A Model Context Protocol (MCP) server that provides iOS push notifications through the Bark service. Send notifications directly from Claude conversations with a simple, intelligent interface.
Features
Single Tool Interface: One
notifytool handles all notification scenariosDevice Aliases: Use friendly configurable aliases like "iPhone:key1", "macOS:key2" instead of exposing device keys to AI
Async-First: Non-blocking notifications with background delivery and structured logging
Complete Bark API Support: All 20+ parameters including encrypted messages and notification management
Update/Delete Notifications: Modify or remove previously sent notifications using notification IDs
Related MCP server: MCP Notifications Server
Quick Start
Prerequisites
Node.js 20+
A Bark device key from the iOS app (setup tutorial)
A MCP Client like Claude Desktop or Claude Code
via npmjs
Claude Desktop Integration
Add to your Claude Desktop configuration file:
macOS/Linux:
~/.config/claude-desktop/claude_desktop_config.jsonWindows:
%AppData%\Claude\claude_desktop_config.json
{
"mcpServers": {
"barkme": {
"command": "npx",
"args": ["@vibeworks/barkme-mcp-server"],
"env": {
"LOG_LEVEL": "info",
"BARK_DEVICES": "iPhone:<your key>",
"BARK_SERVER": "https://api.day.app",
"BARK_GROUP": "Claude",
"BARK_RETRY": "2",
"BARK_ASYNC": "true"
}
}
}
}Restart Claude Desktop after adding the configuration. The Barkme server will appear in the MCP tools section.
via Smithery
To install barkme-mcp-server for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @vibeworks/barkme-mcp-server --client claudeFrom source
git clone https://github.com/thevibeworks/barkme-mcp-server
cd barkme-mcp-server
npm install
npm run build{
"mcpServers": {
"barkme": {
"command": "node",
"args": ["/absolute/path/to/barkme-mcp-server/dist/index.js"],
"env": {
...
}
}
}
}Usage Examples
Ask Claude:
"Send me a notification saying 'Hello World'"
"Send a notification to my iPhone and iPad saying 'Meeting in 10 minutes'"
"Send a critical alert about server maintenance"
"Update the notification with ID 'deploy-123' to say 'Deployment completed'"
Tool Reference
notify
Send push notifications to iOS devices via Bark service.
Key Parameters:
Parameter | Type | Description |
| string | Main notification text |
| string | Bold title above message |
| enum | Urgency: |
| array | Device aliases (e.g., |
| URL | Custom icon image |
| URL | Link to open when tapped |
| string | For updating/deleting notifications |
| boolean | Delete notification (requires |
Response Format:
Sending notification - queued for background delivery
To: `iPhone`, `iPad`
Level: timeSensitive
Delivery status will be logged to console:
2025-07-29T15:26:17.123Z [INFO] Notification delivered to iPhone in 0.234s
2025-07-29T15:26:17.145Z [INFO] Notification delivered to iPad in 0.267sEnvironment Variables
Variable | Default | Description |
| - | Required: Device keys: |
| First device | Default device alias for fallback |
|
| Bark server URL |
|
| Default notification group |
| - | Default notification sound |
| - | Default icon URL |
| - | Default urgency level |
| - | Default volume (0-10) |
|
| Retry count on failure (0-10) |
|
| Async mode: |
|
| Logging level: |
Development
Project Structure
barkme-mcp-server/
├── src/
│ ├── index.ts # Main MCP server implementation
│ └── logger.ts # Simple structured logging
├── dist/
│ ├── index.js # Compiled executable
│ ├── logger.js # Compiled logger
│ └── *.d.ts # Type definitions
├── references/ # Reference materials
├── package.json # Project configuration
├── tsconfig.json # TypeScript configuration
├── CLAUDE.md # Development guide
└── README.md # This fileBuild Commands
npm run build # Compile TypeScript
npm run watch # Watch mode for development
npm start # Run the compiled serverLicense
MIT
Related Projects
Bark - The original iOS notification service
barkme-tools - Original shell script implementation
Model Context Protocol - The MCP specification
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
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/thevibeworks/barkme-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server