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

mcp-kira

v1.0.4

Published

MCP server that exposes a static analysis tool (lint-staged), etc.

Downloads

17

Readme

mcp-kira

An MCP (Model Context Protocol) server exposing a single tool run_static_analysis that runs:

pnpm lint:changed

It is designed to be used with Claude Desktop and runs over stdio. All logs are sent to stderr; the JSON‑RPC stream to Claude is kept on stdout.

Quick start (Claude Desktop)

  1. Put this repo somewhere accessible (or publish it to npm/GitHub).

  2. Add a server entry in your claude_desktop_config.json:

    {
      "mcpServers": {
        "kira-extension": {
          "command": "npx",
          "args": ["-y", "mcp-kira"],
          "env": {
            "PROJECT_ROOT": "/absolute/path/to/your/workspace",
            // Optional: override the command that will be executed
            "LINT_STAGED_CMD": "pnpm lint:changed"
          }
        }
      }
    }

    Tip: If you haven't published to npm yet, you can also point npx at a GitHub repo (e.g. "args": ["-y", "github:YOUR_USER/mcp-kira-server"]). The prepare script will build TypeScript during install.

  3. In Claude, restart the app or reload MCP servers. You should see a new tool named run_static_analysis.

Environment

  • PROJECT_ROOT (required): absolute or relative path to your repository root; the command runs only inside this directory.
  • LINT_STAGED_CMD (optional): full command to run. Defaults to pnpm lint:changed.

Security notes

  • The server chdirs into PROJECT_ROOT at startup and executes the command there.
  • It never writes to stdout except MCP protocol messages; logs go to stderr.
  • Output is returned as a JSON string with { stdout, stderr, exit_code }.

Local development

pnpm i
pnpm dev  # hot reload with tsx
pnpm build && node dist/index.js

How to publish

pnpm publish --access public