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

@runcontext/cli

v0.6.1

Published

Turn your database into an AI-ready data product. Browser-based Context Brief wizard, automatic schema introspection, Bronze-to-Gold tier enrichment, and MCP server for Claude Code, Cursor, and Copilot.

Readme

@runcontext/cli

Turn your database into an AI-ready semantic plane.

Run context setup and a 6-step wizard walks you through everything: connect your database, define your semantic plane, scaffold metadata, checkpoint at Bronze, hand off to your AI agent for curation to Gold, and serve the result via MCP.

Works with Claude Code, Cursor, Copilot, Windsurf, Codex, and any MCP-compatible AI tool. Supports PostgreSQL, DuckDB, MySQL, SQL Server, SQLite, Snowflake, BigQuery, ClickHouse, and Databricks.

Installation

npm install @runcontext/cli

Quick Start

context setup
# → 6-step wizard: Connect > Define > Scaffold > Checkpoint > Curate > Serve
# → Your semantic plane is ready

Or tell your AI agent:

"Install @runcontext/cli and build a semantic plane for my database."

Setup Wizard Steps

  1. Connect — Point to your database
  2. Define — Name your semantic plane, set owner and sensitivity
  3. Scaffold — Introspect the schema, generate Bronze metadata
  4. Checkpoint — Review and lock the Bronze baseline
  5. Curate — Hand off to your AI agent (Claude Code, Cursor, Copilot) which uses MCP to query the database and write Gold-quality metadata
  6. Serve — MCP server goes live, AI agents get full context

Commands

# Guided setup
context setup                    # 6-step wizard — database to semantic plane

# Build pipeline
context new <name>               # Scaffold a new semantic plane manually
context introspect --db <url>    # Connect database, scaffold Bronze metadata
context enrich --target silver   # Auto-enrich toward Silver tier
context build                    # Compile semantic plane → manifest JSON
context tier [model]             # Show Bronze/Silver/Gold scorecard

# Quality
context lint                     # Run lint rules
context fix --write              # Auto-fix lint issues
context verify --db <url>        # Check accuracy against live database

# Serve & export
context serve --stdio            # MCP server (stdio — for Claude Code, Cursor, etc.)
context serve --http --port 3000 # MCP server (HTTP)
context blueprint [model]        # Export portable AI Blueprint (OSI YAML)
context site                     # Generate browsable documentation site
context explain <name>           # Look up any model, term, or owner

MCP Server

Included in this package via context serve.

{
  "mcpServers": {
    "runcontext": {
      "command": "npx",
      "args": ["@runcontext/cli", "serve", "--stdio"]
    }
  }
}

8 MCP tools: search, explain, validate, tier, golden-queries, guardrails, list-products, get-product.

Tiers

  • Bronze — Scaffolded metadata from schema introspection
  • Silver — Auto-enriched with descriptions, types, and relationships
  • Gold — Agent-curated with verified business context, golden queries, and guardrails

Documentation

runcontext.dev | GitHub

License

MIT