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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@brigid/mcp-apple-calendar

v0.0.3

Published

Read-only Apple Calendar MCP server (via macOS EventKit) — the reference implementation of brigid's calendar capability contract.

Readme

@brigid/mcp-apple-calendar

A read-only Apple Calendar Model Context Protocol (MCP) server. It is the reference implementation of brigid's calendar capability contract — it exposes only the tool the brigid GTD skills need (find-events), using the contract's canonical tool name so the skills detect and use it automatically.

macOS only. It reads Apple Calendar via macOS EventKit — the same store Calendar.app shows, so it sees every account you've added there (iCloud, Google, Exchange, …). See ADR 0002 for why.

Conformance

| Capability group | Status | | ----------------------------------- | -------------- | | Core (find-events, read-only) | ✅ implemented |

Write (event creation/moves) is intentionally out of scope for v1 — see the contract and ADR 0002.

Permissions

No API token or configuration is needed. The first time find-events runs, macOS will prompt you to grant Calendar access to whatever process is invoking the server; grant it in the dialog, or after the fact via System Settings → Privacy & Security → Calendars. Access persists across runs once granted.

If access is denied, not yet granted, or the prompt times out, find-events returns an explicit tool error — it never reports an empty calendar as a way of papering over a permission problem.

Structure

  • src/index.tscreateServer(), the reusable/testable server factory (registers find-events, no transport).
  • src/bin.ts — the executable entry (bin), which attaches the stdio transport and runs the server.
  • src/eventkit.ts — the Node-side bridge to the native shim; translates its output into the contract's Event shape.
  • src/native/find-events.jxa.js — the JXA (JavaScript for Automation) script that bridges into macOS EventKit. Not compiled by tsc; copied to dist as a build asset.

Develop

nx build mcp-apple-calendar        # compile to dist/packages/mcp-apple-calendar
nx lint mcp-apple-calendar --fix    # lint + sync package.json deps from the root (single-version policy)

Run

After building, launch the server over stdio (macOS only):

node dist/packages/mcp-apple-calendar/src/bin.js

Or, once published, via npx @brigid/mcp-apple-calendar.

🚀