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

@f3d1/llmkit-mcp-server

v0.4.7

Published

AI cost tracking: 11 tools for spend, budgets, and Claude Code costs

Downloads

276

Readme

@f3d1/llmkit-mcp-server

AI cost tracking for Claude Code, Cline, Cursor, and Claude Desktop. 11 tools for spend queries, budgets, local session costs, and agent attribution across 11 LLM providers.

Part of LLMKit, an open-source API gateway with cost tracking and budget enforcement.

Quick start

Add to your .mcp.json (Claude Code) or .cursor/mcp.json (Cursor):

{
  "mcpServers": {
    "llmkit": {
      "command": "npx",
      "args": ["@f3d1/llmkit-mcp-server"],
      "env": {
        "LLMKIT_API_KEY": "llmk_your_key_here"
      }
    }
  }
}

The local tools (llmkit_local_*) work immediately with no API key. They auto-detect Claude Code, Cline, and Cursor data on your machine. For the proxy tools, create a free key at the dashboard.

Tools

Proxy tools (need API key)

| Tool | What it does | |------|-------------| | llmkit_usage_stats | Spend, requests, top models for a period | | llmkit_cost_query | Costs grouped by provider, model, session, or day | | llmkit_budget_status | Budget limits and remaining balance | | llmkit_session_summary | Recent sessions with cost, duration, models | | llmkit_list_keys | All keys with status and creation date | | llmkit_health | Proxy ping with response time |

Local tools (no key needed)

Auto-detect installed AI coding tools and aggregate data from all of them.

| Tool | What it does | |------|-------------| | llmkit_local_session | Current session cost across all detected tools | | llmkit_local_projects | Cumulative cost across all projects and sessions | | llmkit_local_cache | Prompt caching savings analysis | | llmkit_local_forecast | Monthly projection vs Max subscription | | llmkit_local_agents | Subagent cost attribution (Claude Code) |

SessionEnd hook

Auto-log session costs when Claude Code exits:

{
  "hooks": {
    "SessionEnd": [
      {
        "type": "command",
        "command": "npx @f3d1/llmkit-mcp-server --hook"
      }
    ]
  }
}

Environment variables

| Variable | Required | Description | |----------|----------|-------------| | LLMKIT_API_KEY | No | API key for proxy tools. Local tools work without it. | | LLMKIT_PROXY_URL | No | Proxy URL (defaults to hosted service) | | LLMKIT_CLINE_DIR | No | Override Cline data directory path |

Supported tools

The local tools detect data from:

  • Claude Code (~/.claude/projects/)
  • Cline (VS Code, Insiders, VSCodium, Cursor, Windsurf globalStorage)
  • WSL installations (scans all distros via UNC paths on Windows)
  • VS Code Server / Cursor Server (remote SSH/WSL extensions)

License

MIT