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

claude-desktop-code

v1.0.2

Published

Connect Claude Desktop to any project instantly — one command, filesystem + terminal access via MCP

Readme

claude-desktop-code

Connect Claude Desktop to any project instantly — one command, full filesystem and terminal access via MCP.

Features

  • One-command setup — Run claude-desktop-code in any project directory
  • Filesystem access — Claude can read and write files in your project
  • Terminal access — Execute commands, run scripts, search code
  • Session snapshots — Automatic git-based snapshots of your work
  • Web dashboard — View project info and snapshots at http://localhost:11337

Prerequisites

Installation

npm install -g claude-desktop-code

Or use npx (no install):

npx claude-desktop-code

Usage

Start claude-desktop-code

cd your-project
claude-desktop-code

This will:

  1. Configure Claude Desktop with MCP servers for your project
  2. Start a file watcher for automatic snapshots
  3. Launch the web dashboard at http://localhost:11337
  4. Prompt to restart Claude Desktop

Available Commands

| Command | Description | |---------|-------------| | claude-desktop-code | Start claude-desktop-code for current project | | claude-desktop-code status | Show current project status and recent snapshots | | claude-desktop-code clean | Remove MCP config and session data |

Using with Claude Desktop

After running claude-desktop-code:

  1. Restart Claude Desktop when prompted
  2. Claude will have access to your project files
  3. Use the terminal tool to run commands like:
    • ls -la
    • npm test
    • git status
    • grep -r "pattern" src/

How It Works

claude-desktop-code sets up two MCP servers in Claude Desktop:

  1. filesystem — Provides read/write access to your project directory
  2. terminal — Secure shell command execution within your project

Your project path is symlinked to ~/.claude-desktop-code/active-project, so Claude always accesses the correct directory.

Session Snapshots

Changes are automatically committed to a shadow git repository at ~/.claude-desktop-code/<project>/shadow.git. This lets you:

  • Track history without polluting your project's git
  • Revert to previous states via the web dashboard — click "↩ Revert" on any snapshot to restore your project to that point

Configuration

Session data is stored in ~/.claude-desktop-code/:

~/.claude-desktop-code/
├── active-project        → symlink to current project
├── terminal-mcp/         # MCP server with dependencies
│   ├── terminal-mcp.js
│   ├── package.json
│   └── node_modules/
└── <project-slug>/       # Per-project data
    ├── shadow.git/       # Snapshot repository
    └── ...

Requirements

  • macOS, Linux, or Windows (WSL)
  • Node.js >= 18
  • Git

License

MIT