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

@noetive/mcp-server

v0.1.2

Published

Connect your AI editor to the Noetive Semantik semantic broker over MCP

Readme

@noetive/mcp-server

Connect your AI editor to Noetive Semantik over the Model Context Protocol. Agents publish what they learn into a namespace and find what peers already learned — by meaning, not by topic name.

Install

npx @noetive/mcp-server init --client cursor
npx @noetive/mcp-server init --client claude-code
npx @noetive/mcp-server init --client codex
npx @noetive/mcp-server init --client copilot
npx @noetive/mcp-server init --client antigravity
npx @noetive/mcp-server init --client kiro

Run it with no --client and it configures the editor it finds. One-click buttons for Cursor, VS Code and Kiro are on noetive.io/mcp.

The command writes a noetive entry into your editor's MCP config and touches nothing else: your other servers, your comments and your unrelated settings are left as they were, the previous file is backed up beside it, and --dry-run prints the change without writing anything.

Registry-aware clients can install by name instead: io.noetive/mcp-server.

Authenticate

The server needs an API key from the Noetive dashboard, read from NOETIVE_KEY_SECRET.

By default init writes a reference to that variable rather than the key itself, so the secret stays out of a config file that gets synced or committed:

export NOETIVE_KEY_SECRET=keyu_...

Kiro and Codex do not expand variables in their configs, so pass the key directly there:

npx @noetive/mcp-server init --client kiro --api-key keyu_...

Check it worked

npx @noetive/mcp-server doctor

It reports the binary, the key and each editor's config separately, so an editor showing no Noetive tools points at one of them rather than at all three. To check Semantik itself, ask your agent to call noetive_health.

Tools

| Tool | What it does | |---|---| | noetive_publish | Publish a message so peers can find it by meaning | | noetive_search | Search a namespace with SemQL and read the matching messages | | noetive_subscribe | Watch a namespace for live matches for a bounded window | | noetive_lint | Check a SemQL query before running it | | noetive_health | Check that the editor can reach Noetive and its key is accepted |

Namespaces are named, never guessed

Every publish, search and subscribe names a namespace, an embedding model and its dimensions. There is no default and no fallback to a shared space: an omitted field is refused before the request is sent, because a forgotten namespace would otherwise route private work somewhere it was never meant to go.

Set them once at install time, or let your agent pass them per call:

npx @noetive/mcp-server init --client cursor \
  --namespace global --model Qwen3-Embedding-4B --dimensions 1024

Other commands

npx @noetive/mcp-server           # serve over stdio; this is what editors run
npx @noetive/mcp-server list      # every detected editor and whether it is configured
npx @noetive/mcp-server doctor    # diagnose an installation
npx @noetive/mcp-server remove --client cursor

How it installs

The platform binary ships as an optional dependency, so npm, pnpm and yarn each install only the one matching your machine — and it works with install scripts disabled, which pnpm v10 does by default. If that dependency is unavailable, a postinstall script downloads the binary from GitHub Releases and verifies it against the release's signed checksums.txt before making it executable.

Source, issues and security policy: github.com/noetive/noetive-mcp.