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

@loggydev/mcp-server

v0.1.0

Published

MCP server for Loggy - manage heartbeats, status pages, uptime monitors, and more via AI assistants

Downloads

10

Readme

@loggydev/mcp-server

MCP (Model Context Protocol) server for Loggy. Manage heartbeats, status pages, uptime monitors, feature flags, and more directly from your AI coding assistant.

Installation

npm install -g @loggydev/mcp-server

Or use directly with npx:

npx @loggydev/mcp-server

Configuration

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | LOGGY_API_TOKEN | Yes | Your Loggy API token (get one from Settings → API Tokens) | | LOGGY_API_URL | No | API URL (default: https://loggy.dev) |

Claude Desktop

Add to your ~/.config/claude/claude_desktop_config.json:

{
  "mcpServers": {
    "loggy": {
      "command": "npx",
      "args": ["@loggydev/mcp-server"],
      "env": {
        "LOGGY_API_TOKEN": "lgky_your_token_here",
        "LOGGY_API_URL": "https://loggy.dev"
      }
    }
  }
}

Windsurf / Cascade

Add to your MCP configuration:

{
  "mcpServers": {
    "loggy": {
      "command": "npx",
      "args": ["@loggydev/mcp-server"],
      "env": {
        "LOGGY_API_TOKEN": "lgky_your_token_here",
        "LOGGY_API_URL": "https://loggy.dev"
      }
    }
  }
}

Available Tools

Heartbeats

  • list_heartbeats - List all heartbeat monitors
  • create_heartbeat - Create a new heartbeat monitor
  • get_heartbeat - Get details of a specific heartbeat
  • delete_heartbeat - Delete a heartbeat monitor

Uptime Monitors

  • list_uptime_monitors - List all uptime monitors
  • create_uptime_monitor - Create a new uptime monitor
  • delete_uptime_monitor - Delete an uptime monitor

Status Pages

  • list_status_pages - List all status pages
  • create_status_page - Create a new public status page

Feature Flags

  • list_feature_flags - List all feature flags
  • create_feature_flag - Create a new feature flag
  • toggle_feature_flag - Enable/disable a feature flag

Alerts

  • list_alerts - List recent alerts

Projects & Logs

  • list_projects - List all projects
  • get_project_logs - Get recent logs for a project

Example Usage

Once configured, you can use natural language with your AI assistant:

  • "Create a heartbeat called 'daily-backup' that expects a ping every 24 hours"
  • "Set up an uptime monitor for api.myapp.com/health that checks every 5 minutes"
  • "Create a feature flag called 'new-dashboard' and enable it for 25% of users"
  • "Show me the last 10 error logs from my payment-service project"
  • "List all my heartbeats and their current status"

Requirements

  • Node.js 18+
  • Loggy Team subscription (API tokens are a Team feature)

Getting an API Token

  1. Go to loggy.dev/settings#api-tokens
  2. Click "Create Token"
  3. Give it a name like "MCP Server"
  4. Set permissions (use "Set All Write" for full access)
  5. Copy the token immediately (it's only shown once)

License

MIT