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

graphonomous

v0.1.10

Published

npm wrapper for the Graphonomous MCP server CLI

Readme

graphonomous (npm wrapper)

This package provides an npm-friendly launcher for the Graphonomous MCP server CLI.

It installs (or reuses) a platform-specific graphonomous binary and exposes:

  • graphonomous ...
  • npx graphonomous ...

The underlying server communicates over STDIO, so it works well with MCP-capable editors/clients (for example Zed custom context servers).


What this package does

  • Detects your OS/arch (darwin|linux + x64|arm64)
  • Downloads a matching release asset at install time
  • Installs the OTP release command path under vendor/<platform>-<arch>/graphonomous/bin/graphonomous when available
  • Creates/uses vendor/<platform>-<arch>/graphonomous as the launcher target for consistent execution
  • Runs the resolved Graphonomous command with all arguments passed through

Requirements

  • Node.js >= 18
  • Supported platforms:
    • macOS: x64, arm64
    • Linux: x64, arm64

Install

Global install

npm i -g graphonomous

Then run:

graphonomous --help

One-off execution

npx -y graphonomous --help

Local project install

npm i graphonomous
npx graphonomous --help

Run examples

Start Graphonomous MCP server with a local DB path:

graphonomous --db ~/.graphonomous/knowledge.db --embedder-backend fallback

Safe laptop-oriented defaults:

graphonomous \
  --db ~/.graphonomous/knowledge.db \
  --embedder-backend fallback \
  --log-level info

Zed configuration example

In Zed settings JSON:

{
  "context_servers": {
    "graphonomous": {
      "command": "graphonomous",
      "args": ["--db", "~/.graphonomous/knowledge.db", "--embedder-backend", "fallback"],
      "env": {
        "GRAPHONOMOUS_EMBEDDING_MODEL": "sentence-transformers/all-MiniLM-L6-v2"
      }
    }
  }
}

If you prefer not to install globally:

{
  "context_servers": {
    "graphonomous": {
      "command": "npx",
      "args": ["-y", "graphonomous", "--db", "~/.graphonomous/knowledge.db", "--embedder-backend", "fallback"],
      "env": {}
    }
  }
}

Release asset override instructions

By default, the installer resolves the GitHub release source from this package metadata (repository.url, then homepage, then bugs.url).

Current default source in this package points to:

  • Owner: c-u-l8er
  • Repo: graphonomous

So for version X.Y.Z, the default asset URL pattern is:

  • https://github.com/c-u-l8er/graphonomous/releases/download/vX.Y.Z/graphonomous-vX.Y.Z-<platform>-<arch>.tar.gz

You can override this behavior with environment variables for custom repos/tags/asset hosting.

Override GitHub owner/repo/tag

GRAPHONOMOUS_GITHUB_OWNER=my-org \
GRAPHONOMOUS_GITHUB_REPO=graphonomous \
GRAPHONOMOUS_RELEASE_TAG=v0.1.1 \
npm i graphonomous

Override version used for asset naming

GRAPHONOMOUS_VERSION=0.1.1 npm i graphonomous

Use custom release base URL (bypass GitHub release URL construction)

GRAPHONOMOUS_RELEASE_BASE_URL should point to a directory containing assets named like:

graphonomous-v<version>-<platform>-<arch>.tar.gz

Example:

GRAPHONOMOUS_RELEASE_BASE_URL=https://downloads.example.com/graphonomous \
GRAPHONOMOUS_VERSION=0.1.1 \
npm i graphonomous

Private release download token

GRAPHONOMOUS_GITHUB_TOKEN=ghp_xxx npm i graphonomous

(You can also use GITHUB_TOKEN.)

Skip, force, and tune download behavior

# Skip download entirely
GRAPHONOMOUS_SKIP_DOWNLOAD=1 npm i graphonomous

# Force re-download even if binary exists
GRAPHONOMOUS_FORCE_DOWNLOAD=1 npm i graphonomous

# Timeout and redirect controls
GRAPHONOMOUS_DOWNLOAD_TIMEOUT_MS=120000 \
GRAPHONOMOUS_DOWNLOAD_MAX_REDIRECTS=10 \
npm i graphonomous

Runtime command override

You can bypass installed vendor binaries/release layout and point directly to a custom executable:

GRAPHONOMOUS_BINARY_PATH=/absolute/path/to/graphonomous graphonomous --help

Troubleshooting

Binary not found after install

Try reinstalling or rebuilding:

npm rebuild graphonomous
# or
npm i graphonomous@latest

Unsupported platform message

Current prebuilt targets are Linux/macOS + x64/arm64.

Permission issue on command path

Reinstall the package, or manually set executable bit on unix-like systems:

chmod +x node_modules/graphonomous/vendor/<target>/graphonomous
chmod +x node_modules/graphonomous/vendor/<target>/graphonomous/bin/graphonomous

Source of truth

The npm package is a distribution wrapper around the Graphonomous Elixir CLI.
Core implementation and release process live in the Graphonomous repository.