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

@ben-rogerson/pico-mcp

v0.2.0

Published

MCP server for managing git worktrees and workspaces. Provides tools for creating isolated development environments, tracking changes, and managing collaborative workflows.

Downloads

6

Readme

Pico MCP Server

MCP (Model Context Protocol) server for managing git worktrees and workspaces. Provides tools for creating isolated development environments, tracking changes, and managing collaborative workflows.

Features

  • Project Discovery: Auto-scan configured directories for git repositories
  • Workspace Management: Create and manage isolated git worktrees for tasks
  • Metadata Tracking: YAML-based workspace configuration and history
  • Auto-commit: Built-in file monitoring and automatic commit system
  • Collaboration: Multi-user workspace support with conversation history

Get Started

Install & Use

Option 1: Install Globally

npm install -g @ben-rogerson/pico-mcp

Option 2: Use with npx (no install)

npx @ben-rogerson/pico-mcp

Configuration

Create environment variables (optional):

# Custom project directories (colon-separated)
# Default: ~/Projects:~/Code:~/Developer:~/dev
PROJECT_DIRECTORIES=~/custom-projects:~/work:~/repos

Connect to Claude Desktop / Cursor

Add to your MCP configuration:

Claude Desktop: ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) Cursor: Settings → MCP Servers → Add Server

Option 1: Use via npx (Recommended)

{
  "mcpServers": {
    "pico-mcp": {
      "command": "npx",
      "args": ["-y", "@ben-rogerson/pico-mcp"]
    }
  }
}

Option 2: After global install

{
  "mcpServers": {
    "pico-mcp": {
      "command": "pico-mcp"
    }
  }
}

Available Tools

Discovery & Navigation

  • list projects - Discover git repositories in configured directories
  • list workspaces - View all workspaces for a repository
  • get workspace info - Get detailed workspace information

Workspace Lifecycle

  • create workspace - Create isolated worktree for a task
  • initialize workspace metadata - Initialize metadata for existing workspace
  • archive workspace - Archive completed workspace
  • launch workspace - Open workspace in IDE/terminal

Change Management

  • list changes from specific workspace - Show detailed changes in a workspace
  • force commit workspace - Manually trigger commit in workspace
  • merge remote workspace changes into local - Sync remote changes to local workspace

Integration

  • generate mr link - Generate GitLab/GitHub merge request link

Development

Run Tests

npm test

Run Inspector

Debug MCP tools with the inspector:

npm run inspect

Format Code

npm run lint

Architecture

  • STDIO Transport: Native stdin/stdout communication for MCP clients
  • MCP SDK: Model Context Protocol implementation
  • Git Worktrees: Isolated development environments
  • YAML Metadata: Distributed workspace configuration

Why STDIO?

STDIO (stdin/stdout) was chosen over HTTP/SSE and WebSocket transports for several key reasons:

Simplicity - Zero infrastructure required. No web servers, proxies, or network configuration. Just a command that spawns a process.

Native MCP Support - Claude Desktop and Cursor natively support STDIO transport out-of-the-box. No additional tooling or adapters needed.

Security - Process-level isolation. No exposed ports, no authentication layers, no CORS concerns. Communication stays within the local machine.

Reliability - Direct process communication eliminates network latency, connection drops, and HTTP overhead. Works offline.

Distribution - Users install via npm and run via npx. No deployment, no hosting, no URL management. Works the same everywhere.

Developer Experience - Single command to install and use. No configuration files, no environment setup, no server management.