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

ga-semantics-mcp

v0.1.7

Published

GA-Bagua Semantic KG — MCP server for LLM semantic memory (Claude, Cursor, OpenCode, etc.)

Readme

GA-Bagua Semantic KG — MCP Server

LLM semantic memory layer using Geometric Algebra and the I-Ching Bagua taxonomy.

Quick Start — One Command Setup

Option 1: One-liner (no npm needed)

Unix / macOS / Linux:

curl -fsSL https://raw.githubusercontent.com/trac41799/ga-bagua-semantic-kg/main/npm/setup.js | node -

Windows PowerShell:

Invoke-WebRequest -Uri "https://raw.githubusercontent.com/trac41799/ga-bagua-semantic-kg/main/npm/setup.js" -OutFile "$env:TEMP\ga-setup.js"; node "$env:TEMP\ga-setup.js"

The setup script will:

  1. Download the correct binary for your platform
  2. Auto-detect installed coding agent harnesses (Claude, OpenCode, Cursor, etc.)
  3. Configure MCP server settings for each detected agent
  4. Install the Bagua encoder skill into agent skill directories

Option 2: Via npm

npm install -g ga-semantics-mcp

Then run the setup wizard:

npx ga-semantics-setup

Or just start the MCP server:

npx ga-semantics-mcp

Option 3: Via Cargo (Rust toolchain)

cargo install ga-semantics-mcp

Then configure your LLM client manually (see Example Config below).

Supported Agents

The setup auto-detects and configures:

| Agent | Auto-Config | Auto-Skill | |-------|------------|------------| | Claude Desktop | MCP config | — | | Claude Code (CLI) | MCP config | CLAUDE.md + skill dir | | OpenCode | MCP config | .opencode/skills/ | | Cursor | MCP config | .cursor/skills/ | | Continue.dev | MCP config | .continue/skills/ | | Windsurf | MCP config | .windsurf/skills/ | | Aider | Manual instructions | — | | Cline (VS Code) | Manual instructions | .cline/skills/ | | Codex (OpenAI) | CLI fallback | — |

Example MCP Config

If configuring manually, add to your client's MCP config:

{
  "mcpServers": {
    "ga-bagua-semantic-kg": {
      "command": "ga-semantics-mcp"
    }
  }
}

See Delivery Guide for per-client config details.

Setup Options

--help              Show help
--quiet             Minimal output
--yes               Auto-confirm all prompts
--path <dir>        Binary install directory (default: ~/.ga-semantics/bin)
--skip-binary       Skip binary download (use existing)
--skip-config       Skip MCP config installation
--skip-skills       Skip skill file installation
--agents <list>     Only configure specific agents (comma-separated)
--list-agents       List detected agents without installing

What it does

  • Encode any concept into an 8-number vector using the LLM's semantic understanding
  • Classify relationships between concepts using WuXing cycle dynamics (generating, controlling, clarifying, etc.)
  • Compute similarity with role-weighted metrics
  • Solve analogies (A:B :: C:?) deterministically
  • Persist knowledge graphs as JSON files with query and export capabilities
  • 29 MCP tools for LLM-driven semantic reasoning

Documentation

License

MIT OR Apache-2.0