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

neonia

v0.1.1

Published

CLI that connects your AI coding tools to Neonia MCP Server: The Cloud Backend for AI Agents.

Readme

Neonia CLI

NPM Version MIT licensed Node.js AI-Ready via Neonia

Zero-dependency CLI that connects your AI coding tools to Neonia MCP Server: The Cloud Backend for AI Agents.


❌ Without Neonia

  • ❌ Every AI tool needs to be manually configured separately
  • ❌ MCP server URLs must be copy-pasted into each editor's JSON config by hand
  • ❌ Switching between Cursor, VS Code, Windsurf, or Roo Code means starting over

✅ With Neonia

Run one command:

npx neonia

Neonia will:

  1. Auto-detect every AI IDE installed on your machine
  2. Inject the correct MCP server configuration — including backups of your existing config
  3. Provide instant access to Neonia Cloud Memory across all your agents

Supported Editors

| Editor / Extension | Detection | Config Path | |---|---|---| | Cursor | ✅ | ~/.config/Cursor/... | | VS Code + Cline | ✅ | ~/.config/Code/User/globalStorage/saoudrizwan.claude-dev/... | | VS Code Insiders + Cline | ✅ | ~/.config/Code - Insiders/... | | VSCodium + Cline | ✅ | ~/.config/VSCodium/... | | VS Code + Roo Code | ✅ | ~/.config/Code/User/globalStorage/rooveterinaryinc.roo-cline/... | | VS Code Insiders + Roo Code | ✅ | ~/.config/Code - Insiders/... | | VSCodium + Roo Code | ✅ | ~/.config/VSCodium/... | | Windsurf | ✅ | ~/.codeium/windsurf/mcp_config.json | | Claude Code | ✅ | ~/.claude.json | | Antigravity IDE | ✅ | ~/.config/Antigravity/... |

All paths are resolved per-platform across macOS, Linux, and Windows.


Installation

Requires Node.js 18 or newer. No global install needed.

npx neonia

[!IMPORTANT] API Key Required: Get a free API key at neonia.io/dashboard to authenticate MCP connections.

Or install globally:

npm install -g neonia
neonia

Usage

Interactive Mode

npx neonia

The wizard will:

  • Prompt for your API key once — then save it to ~/.neonia/config.json for all future runs
  • Detect all compatible AI IDEs and configure their MCP servers

Dry Run

Preview what would happen without writing anything to disk or the network:

npx neonia --dry-run

Target a Different Environment

# Development (localhost:3010)
npx neonia --env dev

# Staging
npx neonia --env staging

# Custom API endpoint
npx neonia --api-url https://your-instance.example.com/mcp

All Options

Usage:
  npx neonia [options]

Options:
  -d, --dry-run         Run without modifying any files or sending network requests.
  --api-url <url>       Override the default Neonia MCP URL.
  --env <env>           Target environment: dev, staging, or prod (default).
  --reset               Clear saved API key and IDE state — runs the full wizard again.
  -h, --help            Show this help message.

Environment Variables

| Variable | Description | |---|---| | NEONIA_TOKEN | Your Neonia API key (skips the interactive prompt) |


How It Works

  1. Configure — reads and patches each detected IDE's config JSON, injecting the neonia MCP server entry with Authorization: Bearer headers
  2. Backup — before writing, creates a timestamped .bak_YYYYMMDD_HHMMSS backup of any existing config
  3. Persist — saves your API key and IDE setup state to ~/.neonia/config.json — subsequent runs skip asking for the key and re-configuring IDEs automatically

[!NOTE] Run npx neonia --reset to clear saved credentials and re-run the full setup wizard.


Development

# Clone the repo
git clone https://github.com/neonia-io/neonia-cli
cd neonia-cli

# Run tests (Node.js native test runner, no dependencies)
npm test

# Try it locally
node bin/index.js --dry-run

🤝 Connect


📄 License

MIT