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

@helpway/mcp

v0.2.0

Published

MCP server for Helpway — connect Claude Desktop, Cursor, ChatGPT, or any MCP client to your Helpway workspace.

Downloads

88

Readme

@helpway/mcp

MCP server for Helpway — connect Claude Desktop, Cursor, ChatGPT, or any MCP client to your Helpway workspace.

What you can do

  • Browse + search conversations, contacts, and the knowledge base
  • Send messages on widget, email, or WhatsApp channels (Helpway routes automatically)
  • Create drafts for human review before send
  • Resolve / reopen / assign conversations
  • Read page history + live visitor signals to power proactive outreach
  • Search the knowledge base semantically for grounded replies

Install

Claude Desktop / Cursor (OAuth — no key needed)

Add to your MCP config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
	"mcpServers": {
		"helpway": {
			"command": "npx",
			"args": ["@helpway/mcp@latest"]
		}
	}
}

The first run opens your browser to sign in to Helpway. Approve, and you're connected — tokens are cached in ~/.helpway and refreshed automatically, so you only log in once. No API key to copy, store, or rotate.

Native remote (clients that speak remote MCP)

If your client supports remote MCP servers directly, skip the bridge and point it at the endpoint — it runs the same OAuth flow natively:

https://api.helpway.ai/mcp

API key (headless tools — CI, scripts)

For non-interactive environments, create a key at https://app.helpway.ai/settings/developers and set HELPWAY_API_KEY:

{
	"mcpServers": {
		"helpway": {
			"command": "npx",
			"args": ["@helpway/mcp@latest"],
			"env": { "HELPWAY_API_KEY": "hw_sk_…" }
		}
	}
}

Available tools

whoami, list_conversations, get_conversation, search_conversations, send_message, create_draft, resolve_conversation, assign_conversation, list_contacts, get_contact, search_contacts, list_active_visitors, get_visitor, search_knowledge_base, list_articles, list_inboxes

Environment variables

| Variable | Required | Default | Notes | |---|---|---|---| | HELPWAY_API_KEY | no | — | hw_sk_… for headless mode. Omit to use OAuth. | | HELPWAY_API_URL | no | https://api.helpway.ai | Override for self-hosted or dev | | HELPWAY_LOCAL | no | false | true → targets http://localhost:52500 | | HELPWAY_OAUTH_PORT | no | 8976 | Loopback port for the OAuth redirect | | HELPWAY_DEBUG | no | false | Logs every JSON-RPC call to stderr |

CLI flags: --local (same as HELPWAY_LOCAL=true), --debug.

Cached OAuth credentials live in ~/.helpway/mcp-auth-<host>.json (mode 0600), keyed by API host so prod and local don't collide. Delete the file to force a fresh login.

Local development

Run the API locally, then point the bridge at it:

# terminal 1 — Helpway API
cd apps/api && bun run dev   # serves http://localhost:52500

# terminal 2 — drive the bridge
HELPWAY_API_KEY=hw_sk_… npx @helpway/mcp --local --debug

Claude Desktop config for local testing:

{
	"mcpServers": {
		"helpway-local": {
			"command": "node",
			"args": ["/abs/path/packages/mcp/dist/index.js", "--local"],
			"env": { "HELPWAY_API_KEY": "hw_sk_…", "HELPWAY_DEBUG": "true" }
		}
	}
}

License

MIT