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

@soundbi/sound-connect

v0.1.0

Published

Local stdio MCP bridge for Sound Connect — connects Claude Desktop and Claude Code to your Sound Connect workspace.

Readme

Sound Connect Bridge

Local stdio MCP server that connects Claude Desktop and Claude Code to your Sound Connect workspace.


Quick start

Important: You must sign in before starting Claude. The bridge runs as a background process launched by Claude — its output is not visible to you, so a login prompt there would cause a silent hang. Always log in from a separate terminal first.

Step 1 — Install Node (if needed)

The bridge requires Node.js 18 or later. Download from nodejs.org.

Step 2 — Sign in (terminal only)

Open a terminal (not inside Claude) and run:

npx @soundbi/sound-connect login

You will see a URL and a short code. Open the URL in a browser, enter the code, and sign in with your Sound BI Microsoft account. When the terminal shows "Signed in as: ...", you are done.

Your token is stored securely in the OS credential store (Windows Credential Manager / macOS Keychain). You only need to do this once — the bridge refreshes tokens silently on subsequent starts.

Step 3 — Configure Claude

Claude Code — add to your project's .mcp.json:

{
  "mcpServers": {
    "sound-connect": {
      "command": "npx",
      "args": ["@soundbi/sound-connect"],
      "env": {
        "SC_BACKEND_URL": "https://<your-backend-url>",
        "SC_CLIENT_SLUG": "<your-client-slug>"
      }
    }
  }
}

Claude Desktop — add to claude_desktop_config.json (location varies by OS):

{
  "mcpServers": {
    "sound-connect": {
      "command": "npx",
      "args": ["@soundbi/sound-connect"],
      "env": {
        "SC_BACKEND_URL": "https://<your-backend-url>",
        "SC_CLIENT_SLUG": "<your-client-slug>"
      }
    }
  }
}

Replace <your-backend-url> and <your-client-slug> with the values provided by your workspace admin.

Step 4 — Start Claude

Start (or restart) Claude Desktop / reload the MCP server in Claude Code. The bridge will connect silently using your cached token.

If you see the error Not signed in — run 'npx @soundbi/sound-connect login' in a terminal, go back to Step 2.


Signing out

To clear your stored token:

npx @soundbi/sound-connect logout

After signing out, run login again before your next Claude session.


Troubleshooting

| Symptom | Fix | |---|---| | Tools return "Not signed in" | Run npx @soundbi/sound-connect login in a terminal, then restart Claude | | Token expired after a long break | Run npx @soundbi/sound-connect login again | | Wrong account signed in | Run logout, then login with the correct account | | Bridge not showing in Claude | Check that SC_BACKEND_URL and SC_CLIENT_SLUG are set correctly in your config |


Configuration reference

| Variable | CLI arg | Required | Description | |---|---|---|---| | SC_BACKEND_URL | --backend-url | Yes | Base URL of the Sound Connect backend | | SC_CLIENT_SLUG | --client-slug | Yes | Your client workspace identifier | | SC_ENTRA_CLIENT_ID | — | No | Override the Entra app registration client ID | | SC_AUTH_SCOPE | — | No | Override the OAuth scope (default: api://sound-connect/.default) |


Why is login a separate command?

Claude launches the bridge as a background stdio process. The MCP protocol uses the process's stdout for message framing — anything else written to stdout (including a browser login prompt) is never shown to you. Running the device-code flow inside the Claude-spawned process would cause a silent hang that looks like "it doesn't work."

The solution: login is always a separate terminal command you run once. After that, every Claude session authenticates silently from the cached token.