npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@vibeworks/barkme-mcp-server

v0.1.2

Published

A Model Context Protocol (MCP) server that provides iOS push notifications through the Bark service

Downloads

227

Readme

Barkme MCP Server

smithery badge

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 notify tool handles all notification scenarios
  • Device 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

Quick Start

Prerequisites

via npmjs

Claude Desktop Integration

Add to your Claude Desktop configuration file:

  • macOS/Linux: ~/.config/claude-desktop/claude_desktop_config.json
  • Windows: %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 claude

From 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 | |-----------|------|-------------| | message | string | Main notification text | | title | string | Bold title above message | | level | enum | Urgency: passive, active, timeSensitive, critical | | targets | array | Device aliases (e.g., ["iPhone", "iPad"]) | | icon | URL | Custom icon image | | url | URL | Link to open when tapped | | id | string | For updating/deleting notifications | | delete | boolean | Delete notification (requires id) |

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.267s

Environment Variables

| Variable | Default | Description | |----------|---------|-------------| | BARK_DEVICES | - | Required: Device keys: key1,key2 or aliases: iPhone:key1,iPad:key2 | | BARK_DEFAULT_DEVICE | First device | Default device alias for fallback | | BARK_SERVER | https://api.day.app | Bark server URL | | BARK_GROUP | Bark MCP Server | Default notification group | | BARK_SOUND | - | Default notification sound | | BARK_ICON | - | Default icon URL | | BARK_LEVEL | - | Default urgency level | | BARK_VOLUME | - | Default volume (0-10) | | BARK_RETRY | 1 | Retry count on failure (0-10) | | BARK_ASYNC | true | Async mode: true (fire-and-forget) or false (blocking) | | LOG_LEVEL | info | Logging level: debug, info, warn, error |

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 file

Build Commands

npm run build        # Compile TypeScript
npm run watch        # Watch mode for development
npm start           # Run the compiled server

License

MIT

Related Projects