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

@metaharness/copilot

v0.1.0

Published

MetaHarness example — VSCode/Copilot mcp.json scaffold for agentic workflows (npx @metaharness/copilot my-bot)

Readme

MetaHarness × VSCode/Copilot mcp.json

A minimal scaffold that wires up GitHub Copilot in VSCode with MCP (Model Context Protocol) servers via mcp.json. This is for developers who already use Copilot Chat in VSCode and want to extend it with custom tools, file-system context, and MCP-backed integrations without hand-rolling configuration files. It does NOT ship a custom Copilot model, agent runtime, or replacement for Copilot Chat — it just generates the config layer that VSCode's Copilot reads on startup.

Quickstart

npx @metaharness/copilot@latest my-bot
cd my-bot && npm install && harness doctor

Then open my-bot/ in VSCode. Copilot Chat will detect mcp.json and offer to enable the configured servers on first launch.

What you get

  • .vscode/mcp.json — Copilot-compatible MCP server registry with sensible defaults (filesystem, fetch, memory)
  • .github/copilot-instructions.md — repo-scoped instructions Copilot Chat reads automatically
  • harness.config.json — MetaHarness manifest declaring the host, template, and validation rules
  • package.json with harness CLI wired up for doctor/validate/sync workflows
  • agents/ directory with one starter agent definition and a README on how to add more
  • .gitignore and .vscodeignore tuned for MCP server logs and local secrets

Advanced

Run the built-in health check after scaffolding to confirm Copilot can see the config:

$ harness doctor
[ok] VSCode detected (1.95.0+)
[ok] .vscode/mcp.json valid (3 servers declared)
[ok] copilot-instructions.md present
[ok] node >= 20

Validate your mcp.json against the Copilot schema before committing:

$ harness validate --strict
validating .vscode/mcp.json...
  servers.filesystem    ok
  servers.fetch         ok
  servers.memory        ok
all checks passed

Inspect the resolved config that Copilot will actually load (useful when diagnosing why a server is silently disabled):

$ harness sync --dry-run
would write: .vscode/mcp.json
would write: .github/copilot-instructions.md
no changes (config in sync)

FAQ

Q: Do I need a Copilot subscription for this? A: Yes — this scaffolds config for the Copilot Chat extension in VSCode, which requires an active GitHub Copilot subscription. The scaffold itself is free.

Q: Will this work with Copilot in JetBrains or Neovim? A: Not directly. The .vscode/mcp.json format is VSCode-specific. JetBrains uses a different MCP integration path; pick a different host template for that.

Q: Can I commit .vscode/mcp.json to a shared repo? A: Yes, and it's recommended for team consistency. Keep secrets out of it — use ${env:VAR} substitution and document the required env vars in copilot-instructions.md.

License

MIT. Built on metaharness (https://www.npmjs.com/package/metaharness).

Deep-dive

Full explainer gist: https://gist.github.com/ruvnet/532201b1e66c528df87857002a1c0ad9