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

zone-vip-mcp

v0.1.6

Published

MCP server for logging working hours to zone system

Readme

Zone VIP MCP

A Model Context Protocol (MCP) server for logging working hours to the Zone system. This tool allows you to easily track and submit your work hours directly from your development environment.

Features

  • 🕒 Log working hours to Zone system
  • 🔄 Automatic repository and branch detection
  • 🔐 Token-based authentication
  • 📝 Detailed work descriptions
  • 🚀 Easy to use with npx

Installation

Using npx (Recommended)

You can run this tool directly without installation:

npx zone-vip-mcp

Global Installation

npm install -g zone-vip-mcp

Local Installation

npm install zone-vip-mcp

Usage

This is an MCP server that provides a logHours tool for logging working hours. It's designed to be used with MCP-compatible clients.

Prerequisites

  1. You need to be in a Git repository
  2. You need a valid Zone system authentication token
  3. The repository should be registered in the Zone system

Tool Parameters

The logHours tool accepts the following parameters:

  • hours (number, required): Hours worked (0.1 - 24)
  • description (string, required): Description of work done
  • token (string, optional): Zone system authentication token
  • cwd (string, optional): Working directory path (auto-detected if not provided)

Example Usage with MCP Client

// Example of calling the logHours tool
{
  "hours": 2.5,
  "description": "Implemented user authentication feature",
  "token": "your-zone-auth-token",
  "cwd": "/path/to/your/project"
}

Configuration

Authentication Token

The first time you use the tool, you'll need to provide your Zone system authentication token. The token will be stored for subsequent uses until the session ends.

Git Repository Setup

Make sure your project is:

  1. A Git repository
  2. Has a remote origin
  3. Is registered in the Zone system

API Endpoints

This tool connects to the Zone system API at https://zone.haier.net:30931 and uses the following endpoints:

  • /zone/bff-service/branches/listBy - Get task information
  • /zone/task-service/tasks/{taskId}/work-logs - Log work hours
  • /zone/code-service/repos - Get repository information

Development

Requirements

  • Node.js >= 16.0.0
  • Git

Local Development

  1. Clone the repository:
git clone <your-repo-url>
cd zone-vip-mcp
  1. Install dependencies:
npm install
  1. Run the server:
npm start

Project Structure

src/
├── server.js      # Main MCP server entry point
├── logHours.js    # Core hours logging functionality
├── api.js         # Zone system API integration
├── token.js       # Token management
└── utils.js       # Git utilities (branch, repo detection)

Publishing to NPM

To publish this package to npm:

  1. Update the version in package.json
  2. Make sure you're logged in to npm: npm login
  3. Publish: npm publish

License

ISC

Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Submit a pull request

Support

If you encounter any issues or have questions, please open an issue on the GitHub repository.