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

@bragduck/mcp

v1.5.4

Published

BragDuck MCP server for logging career achievements from AI agents

Readme

@bragduck/mcp

MCP (Model Context Protocol) server that lets AI agents log career achievements to BragDuck.

Works with any MCP-compatible client: Claude Code, Cursor, Windsurf, and others.

Setup

Claude Code

claude mcp add bragduck -- npx @bragduck/mcp@latest

Cursor

Add to ~/.cursor/mcp.json:

{
  "mcpServers": {
    "bragduck": {
      "command": "npx",
      "args": ["@bragduck/mcp@latest"]
    }
  }
}

VS Code (Copilot)

Add to your VS Code settings JSON:

{
  "mcp": {
    "servers": {
      "bragduck": {
        "command": "npx",
        "args": ["@bragduck/mcp@latest"]
      }
    }
  }
}

Authentication

On first use, call the login tool. This opens your browser for OAuth authentication with BragDuck. Credentials are stored locally in ~/.bragduck/credentials.enc (encrypted, shared with the BragDuck CLI).

Tools

login

Authenticate with BragDuck via browser-based OAuth.

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | force | boolean | No | Force re-authentication even if already logged in |

log_brag

Log a career achievement to BragDuck.

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | title | string | Yes | Short title (10-200 characters) | | description | string | Yes | Detailed description of what was accomplished (50-2000 characters) | | type | string | Yes | Category: progress, achievement, recognition, support, code, leadership, learning, collaboration, challenge, innovation, meeting, bug, others | | impact_level | number | Yes | 0 = none, 1 = low (individual), 2 = medium (team), 3 = high (organization) | | impact_description | string | Yes | Narrative with scope and measurable outcomes | | tags | string[] | No | Tags to categorize the brag | | date | string | No | ISO datetime (defaults to now) | | orgId | string | No | Organisation ID to associate with |

list_brags

List recent brags with optional filtering.

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | limit | number | No | Number of brags to return (default: 10, max: 50) | | search | string | No | Search by title or description | | tags | string[] | No | Filter by tags |

list_objectives

List your OKRs (Objectives and Key Results). Returns goal IDs that can be used with link_brag_to_goal.

No parameters required.

link_brag_to_goal

Link a brag to a goal/key-result.

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | bragId | string | Yes | The brag ID | | goalId | string | Yes | The goal ID |

Requirements

License

MIT