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

@yurukusa/cc-mcp

v1.0.0

Published

MCP server for cc-toolkit — gives Claude real-time access to your Claude Code usage stats

Downloads

102

Readme

cc-mcp

The only cc-toolkit component that feeds data back into Claude during a session.

While other cc-toolkit tools are CLIs you run to see your stats, cc-mcp is an MCP server — it gives Claude itself real-time access to your Claude Code usage data so you can ask questions in plain English.

You: "How much have I used Claude Code this month?"
Claude: "You've logged 47.3h interactive + 83.1h AI for 130.4h total in March.
         You're on a 36-day streak with 22 Ghost Days so far."

Setup

  1. Install cc-agent-load (the data source):

    npm install -g cc-agent-load
  2. Add to claude_desktop_config.json:

    {
      "mcpServers": {
        "cc-toolkit": {
          "command": "npx",
          "args": ["@yurukusa/cc-mcp"]
        }
      }
    }

    Config location:

    • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
    • Windows: %APPDATA%\Claude\claude_desktop_config.json
    • Linux: ~/.config/claude/claude_desktop_config.json
  3. Restart Claude Desktop. The cc-toolkit server will appear in MCP settings.

Tools

cc_usage_summary

Today / week / month totals + streak + autonomy ratio.

Ask Claude: "Show me my Claude Code stats" or "How much AI time vs my time this week?"

cc_daily_breakdown

Day-by-day activity for the last N days (default: 14).

Ask Claude: "Show me my activity for the last 2 weeks" or "When were my Ghost Days?"

cc_project_stats

Per-project time breakdown (top 15 by hours).

Ask Claude: "Which project am I spending the most Claude Code time on?"

cc_forecast

Month-end projection at your current pace.

Ask Claude: "Will my streak survive this month?" or "How many hours will I have logged by end of March?"

What are Ghost Days?

Ghost Days are days when your AI sub-agents ran Claude Code autonomously — while you had zero interactive sessions. The AI kept working while you were offline.

cc-mcp surfaces Ghost Days in the usage summary and forecast so you can track how often your AI runs unsupervised.

Requirements

  • Node.js 18+
  • cc-agent-load installed globally (or accessible in your local cc-loop path)
  • Claude Desktop or another MCP-compatible client

Part of cc-toolkit

This tool is part of the cc-toolkit collection of Claude Code utilities.

All other cc-toolkit tools are CLIs that display data in your terminal. cc-mcp is the bridge that brings that data into your Claude conversations.

Zero external dependencies. No data sent anywhere. Runs entirely local.