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

@aimodes/mcp-server

v0.1.1

Published

Standalone AI Modes MCP server — score AI conversations against the eight-mode engagement typology from any MCP host (Claude Desktop, Gemini CLI, VSCode, Cursor).

Readme

@aimodes/mcp-server

Standalone AI Modes MCP server — score AI conversations against the eight-mode engagement typology from any MCP host: Claude Desktop, Gemini CLI, VSCode (Copilot agent mode), Cursor, and ChatGPT connectors.

AI Modes scores conversations 0–100 against a research-backed engagement framework developed at BYU and returns a per-mode breakdown. This server exposes that scoring pipeline as MCP tools, authenticated with the same device token the AI Modes Chrome extension uses.

Quick start

  1. Mint a device token at https://aimodes.ai/apps/ai-engagement/extension/auth
  2. Run the server:
AIMODES_DEVICE_TOKEN=<token> npx -y @aimodes/mcp-server

By default the server speaks stdio (what desktop apps and IDEs expect). Pass --http for a stateless streamable-HTTP server instead:

AIMODES_DEVICE_TOKEN=<token> npx -y @aimodes/mcp-server --http --port 8787

MCP host configuration

Typical mcp.json / MCP server entry:

{
  "mcpServers": {
    "aimodes": {
      "command": "npx",
      "args": ["-y", "@aimodes/mcp-server"],
      "env": { "AIMODES_DEVICE_TOKEN": "<token>" }
    }
  }
}

Tools

| Tool | What it does | |---|---| | submit_conversation | Submit role-tagged turns for scoring on aimodes.ai | | score_transcript | Score a loose pasted transcript (parsed into turns first) | | get_status | Check auth/device-token status | | get_results | Fetch the score breakdown for a prior submission | | list_modes | List the eight engagement modes | | explain_mode | Explain one mode in depth |

Configuration

| Setting | How | Default | |---|---|---| | Device token | AIMODES_DEVICE_TOKEN env var | required for scoring | | API base URL | AIMODES_API_URL env var or --api-url | https://aimodes.ai | | Transport | --http flag | stdio | | HTTP port | --port | 8787 |

Built on @aimodes/connector-core and the official MCP SDK.

License

MIT © AI Modes