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

@henols/vice-mcp

v0.2.1

Published

VICE emulator MCP server for C64 reverse-engineering: a stdio MCP server that proxies vice tools to a host VICE MCP server.

Readme

@henols/vice-mcp

A stdio MCP server that exposes a running VICE Commodore 64 emulator to an MCP client (such as Claude Code) for reverse-engineering work. It forwards vice tool calls to a host VICE MCP server, and on first use deploys the host launcher scripts it needs into <project>/tools/.

This package is normally installed for you by the @henols/c64-re-tools installer, which also drops the matching skills into your project. It is published separately so it can be launched directly by an MCP client.

Requirements

  • Node.js ≥ 22.18 (or ≥ 23.6). The server ships as TypeScript and runs under Node's native type-stripping — no build step, no flags. Older Node needs --experimental-strip-types and is unsupported.
  • A host with VICE (x64sc) available, reachable from wherever the MCP client runs. The server talks to the host VICE MCP server over HTTP (default http://host.docker.internal:6510/mcp in a container, http://127.0.0.1:6510/mcp otherwise); override with VICE_MCP_URL / VICE_MCP_HOST.

Use as an MCP server

Add it to your MCP client configuration and let the client launch it:

{
  "mcpServers": {
    "vice": {
      "command": "npx",
      "args": ["-y", "@henols/vice-mcp"],
      "timeout": 150000,
      "env": { "MASTRA_TELEMETRY_DISABLED": "1" }
    }
  }
}

The bin (vice-mcp) speaks the MCP stdio protocol. initialize and tools/list are answered locally (from tools-manifest.json); tools/call forwards to the host VICE MCP server.

Environment

| Variable | Purpose | | --- | --- | | VICE_MCP_URL | Full host MCP endpoint (overrides host/port derivation). | | VICE_MCP_HOST | Host to reach the VICE MCP server on. | | VICE_SKIP_RESOURCE_INSTALL=1 | Disable deploying host launcher scripts into <project>/tools/. | | MASTRA_TELEMETRY_DISABLED=1 | Disable Mastra telemetry. |

Development

npm test assumes it is running inside the devcontainer. On a bare host, set CONTAINER_WORKSPACE_PATH (the repo root) and HOST_WORKSPACE_PATH (any consistent host-side mirror) exactly as .github/workflows/ci.yml does, or the path-translation and container-guard tests skip with a reason naming both variables instead of running:

export CONTAINER_WORKSPACE_PATH="$(git rev-parse --show-toplevel)"
export HOST_WORKSPACE_PATH="/host$(git rev-parse --show-toplevel)"

npm run test:automated is the subset of npm test that excludes the three manual-only files (see test-gate.mjs's own header).

npm ci
npm run typecheck
npm test
npm run test:automated  # the automated subset (excludes manual-only files)
npm run smoke     # boots the server and completes an MCP initialize + tools/list handshake
npm run build     # recompiles the host-bound .mts launchers into resources/

License

MIT © Henrik Olsson