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

@digital-streams-media/mcp-server

v0.4.1

Published

MCP server for Bug Traker — connects Claude Code (and other MCP clients) to your Bug Traker workspace. Authenticates with a per-user API key issued by app.bug-traker.com.

Readme

@digital-streams-media/mcp-server

MCP server for Bug Traker — connects Claude Code, Claude Desktop, Cline, and any other MCP-compatible client to your Bug Traker workspace.

What it does

Exposes nine MCP tools for bug-triage, codebase-extraction, and quality workflows:

  • bug_tracker_list_bugs — list bugs assigned to you, filtered by status
  • bug_tracker_get_bug_context — full bug detail including annotated screenshots and session-recording stills
  • bug_tracker_propose_bug_update — post a diagnosis or fix proposal as a comment (developer reviews and applies manually)
  • bug_tracker_list_prompts / bug_tracker_get_prompt — fetch extraction prompts
  • bug_tracker_submit_extraction / bug_tracker_submit_quality / bug_tracker_submit_tests / bug_tracker_submit_system_state — submit codebase analysis results back into the workspace

The server itself is a thin client around the Bug Traker REST API. All authorisation, business logic, and data live on app.bug-traker.com. Your API key never leaves the local process.

Install

You don't usually install this directly — your MCP client (Claude Code, Claude Desktop, etc.) does it for you when you reference the package in .mcp.json / mcp.config.json. The standard pattern:

{
  "mcpServers": {
    "bug-tracker": {
      "command": "npx",
      "args": ["-y", "@digital-streams-media/mcp-server@latest"],
      "env": {
        "BUG_TRACKER_API_URL": "https://app.bug-traker.com/api",
        "BUG_TRACKER_API_KEY": "bt_usr_..."
      }
    }
  }
}

npx will fetch the package on first use and cache it for subsequent runs. The Bug Traker VS Code extension writes this configuration automatically when you connect a workspace.

Get an API key

Sign in to app.bug-traker.com, go to Profile → VS Code Extension, and copy your personal API key (starts with bt_usr_). The key is scoped to your account and the projects you have access to. You can revoke and regenerate at any time.

Configuration

The MCP server reads its configuration in this order:

  1. Environment variables (the standard MCP-host pattern, used by .mcp.json above)
    • BUG_TRACKER_API_URL (default: https://app.bug-traker.com/api)
    • BUG_TRACKER_API_KEY (required)
    • MCP_ALLOW_PROPOSALS (default: false — guards bug_tracker_propose_bug_update)
  2. Config file at ~/.bug-tracker/mcp-config.json (written by the Bug Traker VS Code extension; ignored if env vars are present)

If neither is configured, the server exits with a clear error pointing to the API-key page.

TLS / corporate proxy support

On Windows machines running TLS-inspecting AV (Avast, ESET, Defender, etc.) or corporate ZTNA gateways, Node's bundled CA list doesn't trust the inspecting CA. The server enumerates the OS root cert store at startup and grafts it onto Node's trust, with a 24h disk cache at ~/.bug-tracker/system-ca.pem. macOS gets equivalent treatment via the security CLI. Linux is a no-op (Node already honours /etc/ssl/certs).

Set BUG_TRACKER_SKIP_SYSTEM_CA=1 to disable the shim if your environment has its own TLS trust setup.

Source

github.com/digitalStreams/bug-traker → mcp-server/

Issues: github.com/digitalStreams/bug-traker/issues

License

MIT