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

@ear3/mcp

v0.1.0

Published

Ear3 MCP server — create, deploy, edit, and analyze AI voice interviews from any MCP client (stdio).

Readme

@ear3/mcp

MCP server for Ear3 — lets any MCP client (Claude Code, Claude Desktop, Cursor, …) create, deploy, edit, and analyze AI voice interviews. It is the same thin layer over the Ear3 /api/v1 HTTP API that the ear3 CLI uses — and it shares the CLI's login, so authenticating once covers both.

Install

Claude Code:

claude mcp add ear3 -- npx -y @ear3/mcp

Or in a project's .mcp.json (Claude Code, Cursor, and most clients):

{
  "mcpServers": {
    "ear3": {
      "command": "npx",
      "args": ["-y", "@ear3/mcp"]
    }
  }
}

Authentication

The server resolves a secret key itself — it never appears in the model's context:

  1. EAR3_CONFIG_CLI_KEY environment variable (set it in the server config env block), or
  2. the CLI login store ~/.ear3/config.json — run npx @ear3/voice-config-cli login once and both the CLI and this server are authenticated.

EAR3_API_BASE overrides the API host (dev/staging).

Tools

| Tool | What it does | |---|---| | ear3_create_interview | prompt → generated questions, deployed, live URL + pk key | | ear3_list_interviews | deployed interviews (id = dpl_… = SDK interviewId) | | ear3_get_questions | ordered question list of an interview | | ear3_get_interview_config | full normalized flow JSON for surgical edits | | ear3_edit_interview | regenerate from a prompt / replace flow / rename | | ear3_deploy_interview | deploy a draft → dpl_… + public URL | | ear3_list_responses | responses (transcripts opt-in to save context) | | ear3_ask_insight | AI answer over responses, with verbatim quotes | | ear3_get_session | one session by id | | ear3_get_publishable_key | workspace pk_… key (browser-safe) | | ear3_get_interview_format | flow JSON schema reference |

Two ids: the interview id (edit/config/deploy tools) and the deployment id dpl_… (the interviewId all SDKs take; responses and insights tools). Tool descriptions say which one they expect.

Development

pnpm --filter @ear3/mcp build
pnpm --filter @ear3/mcp test
pnpm --filter @ear3/mcp inspect   # MCP Inspector against the local build

Transport is stdio — stdout is the protocol channel, so never console.log in server code; use console.error. A remote Streamable HTTP variant (with OAuth and mandatory Origin validation) is planned as a separate deployment of this same package.

Agent-facing docs: AGENTS.mdllms.txt. Eval questions for testing agent usage live in evals/.