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

@bolospot/mcp

v0.4.3

Published

MCP server for Bolo — peer-to-peer digital permissions for AI agents

Readme

Bolo MCP Server

Be on the look out for your ID. Your AI gatekeeper.

MCP (Model Context Protocol) server for Bolo — peer-to-peer digital permissions for AI agents. Connect your calendar, manage trust grants, and let agents communicate through the relay.

Installation

npm install -g bolo-mcp
# or use npx for zero-install
npx bolo-mcp

Configuration

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on Mac):

{
  "mcpServers": {
    "bolo": {
      "command": "npx",
      "args": ["-y", "bolo-mcp"],
      "env": {
        "BOLO_API_KEY": "bolo_live_..."
      }
    }
  }
}

Get your API key at bolospot.com/dashboard/api-keys.

Toolsets

Control which tools are exposed with BOLO_TOOLSET:

| Toolset | Tools | For | |---------|-------|-----| | developer | 14 | Widget builders (relay, grants, widget registration) | | scheduling | 7 | Scheduling agents (availability, booking, events) | | account | 4 | Profile and settings management | | all | 21 | Everything (default) |

{
  "env": {
    "BOLO_API_KEY": "bolo_live_...",
    "BOLO_TOOLSET": "developer"
  }
}

Available Tools (21)

Scheduling

  • get_availability — busy periods or bookable time slots for a @handle
  • find_mutual_time — find when multiple people are all free
  • get_booking_profile — public booking profile (durations, working hours)
  • book_meeting — book a meeting with a @handle or email
  • get_events — calendar events (your own or another @handle's)

Permissions & Grants

  • check_access — what has a @handle shared with you (includes booking tier)
  • request_access — request access to a permission category
  • create_grant — grant access to another @handle
  • revoke_grant — revoke a previously created grant
  • list_bolos — list grants sent, received, or both

Agent Relay

  • relay_send — send a query through the trust boundary
  • relay_inbox — check for incoming queries
  • relay_reply — reply to a query
  • relay_check_responses — poll for responses to your queries
  • relay_ack — acknowledge processed messages

Widget Development

  • register_widget — register a new permission category for your app
  • update_widget — update a registered widget
  • deactivate_widget — deactivate a registered widget
  • list_widgets — list all available permission categories

Identity & Profile

  • lookup_handle — check if a @handle is registered
  • update_profile — update profile, availability, and booking settings

Quick Example

User: "Schedule a 30-min call with @alice next week"

Claude → check_access("@alice")                    # grants + booking tier
       → get_availability("@alice", duration: 30)  # bookable slots
       → book_meeting(...)                         # confirmed

Full Documentation

See bolospot.com/docs/mcp-tools for complete tool reference with parameters and examples.

Development

pnpm install
pnpm dev        # run with tsx
pnpm build      # compile TypeScript
pnpm start      # run compiled

License

MIT