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

pyne-harvest-mcp

v1.0.3

Published

Simple MCP client for Harvest team data

Readme

Simple Harvest MCP

Goal: Get your team using Claude Desktop to query Harvest data with minimal setup.

🎯 What This Is

  • Claude Desktop integration for Harvest time tracking
  • Team members just copy/paste one config block
  • You deploy the API once, everyone benefits

🚀 Setup

1. Deploy the API (You do this once)

# Deploy to Google Cloud Run
gcloud run deploy harvest-api --source . --region us-central1

# Set environment variables
gcloud run services update harvest-api --region us-central1 \
  --set-env-vars HARVEST_ACCOUNT_ID=your_id,HARVEST_ACCESS_TOKEN=your_token,TEAM_API_KEY=random_key_123

2. Publish NPM Package (You do this once)

# Change package name in package.json to something unique
# Then publish
npm publish

3. Team Member Setup (Each person does this)

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "harvest": {
      "command": "npx",
      "args": ["-y", "@your-company/harvest-mcp"],
      "env": {
        "API_URL": "https://your-api-url.run.app",
        "API_KEY": "random_key_123"
      }
    }
  }
}

Done! Team members restart Claude Desktop and can ask:

  • "What's our team utilization this week?"
  • "Show me project summaries for the last month"

📁 Files

  • api.py - FastAPI server for Cloud Run
  • index.js - NPM package (MCP client)
  • package.json - NPM configuration
  • requirements.txt - Python dependencies

🔧 How It Works

  1. User asks Claude a question about team data
  2. Claude Desktop automatically downloads your NPM package
  3. NPM package calls your Cloud Run API
  4. API gets data from Harvest and returns it
  5. User gets formatted response in Claude

That's it! Super simple architecture with minimal user setup.