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

@hasoftware/mcp

v1.4.0

Published

MCP proxy for HASoftware Knowledge — connect Claude Code to mcp.hasoftware.vn

Readme

@hasoftware/mcp

npm version license

MCP proxy for HASoftware Knowledge Base — connect Claude Code to your knowledge kits at mcp.hasoftware.vn.

Quick Start

npx @hasoftware/mcp --install

This will interactively configure Claude Code to connect to your MCP server.

Commands

| Command | Description | |---------|-------------| | npx @hasoftware/mcp | Start MCP proxy (used automatically by Claude Code) | | npx @hasoftware/mcp --install | Add MCP config to Claude Code (interactive) | | npx @hasoftware/mcp --uninstall | Remove MCP config from Claude Code | | npx @hasoftware/mcp --catalog | Browse knowledge kits by category | | npx @hasoftware/mcp --test | Test connection to MCP server | | npx @hasoftware/mcp --info | Show available tools, resources & prompts | | npx @hasoftware/mcp --setup | Show manual setup instructions | | npx @hasoftware/mcp --help | Show help | | npx @hasoftware/mcp --version | Show version |

Manual Setup

1. Get your token

Log in to mcp.hasoftware.vn and copy your MCP token from the My Token page.

2. Add to Claude Code

{
  "mcpServers": {
    "hasoftware": {
      "command": "npx",
      "args": ["-y", "@hasoftware/mcp"],
      "env": {
        "HASOFTWARE_TOKEN": "your-token-here"
      }
    }
  }
}

Add this to ~/.claude/settings.json (global) or .claude/mcp.json (project).

3. Use it

You: "Search my knowledge kits for react best practices"
Claude: [calls search_kits → reads files → gives you the answer]

What You Get

| Capability | Count | Examples | |-----------|-------|---------| | Tools | 10 | search_kits, get_kit, get_file, create_kit, update_file | | Resources | 2 | knowledge://kits/{slug}, knowledge://kits/{slug}/{filename} | | Prompts | 1 | use_kit(slug) — load a kit into Claude's context |

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | HASOFTWARE_TOKEN | Yes | Your MCP bearer token | | HASOFTWARE_URL | No | Custom server URL (default: https://mcp.hasoftware.vn/api/mcp) |

How It Works

This package is a lightweight stdio-to-HTTP proxy. When Claude Code starts it:

  1. Connects to mcp.hasoftware.vn using your bearer token
  2. Discovers available tools, resources, and prompts
  3. Proxies all MCP requests between Claude Code (stdin/stdout) and the remote server (HTTP)

The proxy is ~120 lines of code. It does not store data, access files, or run any logic beyond forwarding messages.

License

MIT