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

@kyora-sh/mcp

v0.0.5

Published

Superhuman debugging for coding agents — +31.63% on SWE-bench Verified, with automatic dependency and doc indexing

Readme

@kyora-sh/mcp

Kyora gives coding agents superhuman debugging capabilities, improving performance by 31.63% on SWE-bench Verified out of the box. It also automatically indexes your dependencies and any online or offline source, giving agents the perfect context to work with.

Install

bunx @kyora-sh/mcp

Usage with Claude Code

{
  "mcpServers": {
    "kyora": {
      "command": "bunx",
      "args": ["@kyora-sh/mcp"],
      "env": {
        "KYORA_DATA_DIR": "/path/to/your/app/.kyora"
      }
    }
  }
}

Instrumenting your app

Add @kyora/sdk to your app and call init():

import { init, watch, trace } from "@kyora/sdk"

init({ dataDir: ".kyora" })

watch — track state over time

Wrap any object with watch() to record snapshots on every mutation:

import { watch } from "@kyora/sdk"

const cart = watch({ items: [], total: 0 }, "cart")

cart.items.push({ name: "Widget", price: 9.99 })
cart.total = 9.99
// both mutations are recorded as state snapshots

trace — record function calls

Wrap any function with trace() to record args, return values, errors, and timing:

import { trace } from "@kyora/sdk"

const fetchUsers = trace(async function fetchUsers() {
  const res = await fetch("/api/users")
  return res.json()
}, "fetchUsers")

// every call records: args, return value, duration, errors
await fetchUsers()

automatic instrumentation (bun plugin)

Add kyora as a preload to auto-instrument // @kyora.watch and // @kyora.trace comments:

# bunfig.toml
preload = ["@kyora/sdk/plugin"]

Then just annotate your code:

// @kyora.watch
const state = { count: 0, users: [] }

// @kyora.trace
async function loadUsers() {
  const res = await fetch("/api/users")
  state.users = await res.json()
}

The plugin transforms this at load time — no manual wrapping needed.

automatic capture

init() also patches fetch, console, and error handlers automatically:

  • all fetch() calls are logged with method, url, status, duration, headers, body
  • all console.log/warn/error/info/debug calls are captured
  • unhandled errors and promise rejections are recorded

MCP Tools

| Tool | Description | |------|-------------| | kyora_query_state | query state snapshots for a watched variable over time | | kyora_get_recent_errors | get recent errors with stack traces | | kyora_get_http_log | get recent HTTP requests and responses | | kyora_search_docs | semantic search across indexed documentation | | kyora_list_indexed | list all indexed documentation sources | | nora_index_source | index docs from npm packages, URLs, or local files | | kyora_index_status | check indexing status |

License

Elastic-2.0