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

@audividi/mcp

v0.2.1

Published

AudiVidi MCP server — read your transcripts from Claude, Cursor, Windsurf, Zed and other MCP clients.

Readme

@audividi/mcp

AudiVidi's MCP server — read your transcripts from Claude, Cursor, Windsurf, Zed, Claude Code and other MCP clients. Read-only. Two ways to run it:

| | Hosted (no install) | Local (stdio) | |---|---|---| | URL / command | https://audividi.ai/api/mcp | npx -y @audividi/mcp@latest | | Auth | Authorization: Bearer av_... header | AUDIVIDI_API_KEY env or the login tool | | Works with | Claude Code, Cursor, Windsurf, VS Code, Claude.ai (Team/Enterprise admins) | Claude Desktop and every stdio client |

Create a key in AudiVidi → Settings → Developers (starts with av_, shown once). Full guide with copy-ready snippets: https://audividi.ai/developers

Hosted — Claude Code

claude mcp add --transport http audividi https://audividi.ai/api/mcp --header "Authorization: Bearer av_YOUR_KEY"

Hosted — Cursor / Windsurf (mcp.json)

{ "mcpServers": { "audividi": { "url": "https://audividi.ai/api/mcp", "headers": { "Authorization": "Bearer av_YOUR_KEY" } } } }

Local — Claude Desktop (claude_desktop_config.json)

{
  "mcpServers": {
    "audividi": {
      "command": "npx",
      "args": ["-y", "@audividi/mcp@latest"],
      "env": { "AUDIVIDI_API_KEY": "av_YOUR_KEY" }
    }
  }
}

Requires Node 20+. Optional AUDIVIDI_API_URL overrides the base URL (default https://audividi.ai).

Tools (all read-only)

| Tool | What it does | Hosted | Local | |------|--------------|:-:|:-:| | login | Sign in with an av_ API key (saved to ~/.config/audividi/credentials.json, mode 0600). | | x | | logout | Remove the locally stored key. | | x | | get_current_user | Show the signed-in account. | x | x | | list_files | List your transcripts; filter by keyword, since_days, page. | x | x | | search_files | Keyword search within a from/to date window (YYYY-MM-DD). | x | x | | get_transcript | Full transcript: text + timestamped segments with speaker labels. | x | x | | get_note | AI note: summary, action items, key topics. | x | x | | get_file | Metadata + audio download URL (when stored) + segments + note. | x | x | | export_transcript | Transcript as txt/srt/vtt/json/md, or the summary as txt/md/json. | x | x | | ask_library | Ask a question across your indexed library; answer + citations, honest low-confidence state. | x | x |

Scope & guarantees

  • Read-only. No record/edit/delete tool; the key carries read scope only.
  • Tools see the transcripts stored on the server. Enable Library Sync (Settings → Advanced) to make your library reachable.
  • Rate limit: 60 requests per minute per key. A hosted MCP tool call counts once for the MCP request and once for the endpoint it reads, so budget about 30 tool calls per minute.

Develop

npm install
npm test      # vitest
npm run build # tsc → dist/

Changelog: CHANGELOG.md. License: MIT.