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

towow-mcp

v0.7.1

Published

Towow Agent Collaboration Protocol — MCP Server

Downloads

1,017

Readme

towow-mcp

Towow MCP Server for Node.js. Install from npm or npmmirror, then run the same MCP command as every other distribution route:

towow-mcp

Official install decision page on the deployed Towow site:

/mcp

SecondMe AI Consumer Lane

如果你要交付 PLAN-035 的 4 个 SecondMe 场景壳,不要把 Node README 里的通用 register/login 心智当成专线 happy path。
统一入口请使用:

SecondMe 专线固定 happy path:

预置 scene_id / auth_lane=secondme_ai / entry_surface
→ towow_auth_begin 或 protected tool 返回 AUTH_REQUIRED
→ SecondMe OAuth
→ towow_auth_status
→ towow_auth_exchange
→ towow_formulation_start / towow_discover / towow_agents ...

Route Selection

| Scenario | Install command | |----------|-----------------| | Global default | npm install -g towow-mcp | | Mainland China | npm install -g towow-mcp --registry=https://registry.npmmirror.com | | Temporary run | npx -y towow-mcp | | Temporary run in Mainland China | npx --registry=https://registry.npmmirror.com towow-mcp | | Enterprise / offline | npm install -g ./towow-mcp-0.3.1.tgz |

Requirements

  • Node.js >= 18
  • Verify with towow-mcp --help

Client Config

Claude Code / Cursor

{
  "mcpServers": {
    "towow": {
      "command": "towow-mcp",
      "args": []
    }
  }
}

npx Route

{
  "mcpServers": {
    "towow": {
      "command": "npx",
      "args": ["-y", "towow-mcp"]
    }
  }
}

For Mainland China, set the npm registry to npmmirror first or add --registry=https://registry.npmmirror.com to the npx command.

Notes

  • You do not need to start from the GitHub source repository if you only want to install the MCP server.
  • Mainland China keeps the same package identity towow-mcp; only the download registry changes.
  • Enterprise / offline delivery should ship a tarball together with a release manifest and checksums.
  • Public docs still converge on one runtime contract: package name towow-mcp, command towow-mcp, server id towow.
  • Generic towow_register / towow_login remain available, but they are not the official happy path for the SecondMe lane.

Source Install

cd mcp-server-node
npm install
npm run build