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

otter-agent-cli

v0.1.0

Published

Agent-native CLI + MCP server for the Otter.ai API. 31 commands across 8 groups, dual-mode: humans and AI agents.

Readme

otter-agent-cli

Agent-native CLI + MCP server for the Otter.ai API. 31 commands across 8 groups — works as a terminal CLI for humans and an MCP server for AI agents.

Install

npm install -g otter-agent-cli

Auth

# Option 1: Environment variable (recommended for automation)
export OTTER_ACCESS_TOKEN=your_token_here

# Option 2: Save to config file
otter login --access-token your_token_here

# Verify
otter status

Generate your access token in Otter.ai: Enterprise Settings → API → Generate Token

Note: The Otter.ai public API is currently in beta and requires an Enterprise plan. Contact your Otter account manager for API access.

Usage

# List conversations (meeting transcripts)
otter conversations list --pretty

# Get a full transcript
otter conversations transcript <id>

# Get timestamped, speaker-attributed utterances
otter conversations utterances <id> --pretty

# Organize into folders
otter folders create --name "Q1 Planning"
otter conversations update <id> --folder-id <folder_id>

# Set up webhook for transcript-ready events
otter webhooks create \
  --url https://your-app.com/webhooks/otter \
  --events Conversation.processed

# List speakers
otter speakers list --pretty

# Workspace members
otter workspace members --pretty

MCP Server

Use as an MCP server for Claude, Cursor, or any MCP-compatible agent:

{
  "mcpServers": {
    "otter": {
      "command": "npx",
      "args": ["otter-agent-cli", "mcp"],
      "env": {
        "OTTER_ACCESS_TOKEN": "your_token_here"
      }
    }
  }
}
# Start MCP server manually
otter mcp

Output Flags

All commands support:

--pretty              # formatted JSON
--quiet               # suppress output (exit code only)
--fields id,title     # dot-notation field filter
--access-token <tok>  # per-command token override

Commands

| Group | Commands | |-------|---------| | otter login/logout/status | Auth management | | otter conversations | list, get, create, update, delete, transcript, utterances, share | | otter speakers | list, get, create, update | | otter folders | list, get, create, update, delete | | otter groups | list, get, members | | otter workspace | info, members | | otter webhooks | list, get, create, update, delete | | otter mcp | Start MCP stdio server |

See AGENTS.md for the full agent reference with examples.

Environment Variables

| Variable | Description | |----------|-------------| | OTTER_ACCESS_TOKEN | Otter.ai OAuth access token | | OTTER_API_URL | Override base URL for enterprise instances |

License

MIT — Brandon Charleson