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

@phoenixaihub/graphrag

v0.1.0

Published

Graph RAG for private codebases — index code into a knowledge graph with semantic search and MCP server. Self-hosted, no code leaves your machine.

Readme

@phoenixaihub/graphrag

npm CI License: MIT

Graph RAG for private codebases — index your code into a knowledge graph with semantic search and an MCP server. Self-hosted, no code leaves your machine.

Features

  • 🔍 Index TypeScript, JavaScript, and Python codebases into a knowledge graph
  • 🧠 Semantic search over code with graph-aware context expansion
  • 🔗 Graph relationships — functions, classes, imports, exports, call chains
  • 🤖 MCP server — plug into Claude, Cursor, or any MCP-compatible client
  • 🏠 Self-hosted — SQLite-backed, runs locally, zero cloud dependencies
  • Optional embeddings via OpenAI text-embedding-3-small

Quick Start

npm install -g @phoenixaihub/graphrag

# Index a repo
graphrag index ./my-project

# Search code
graphrag query "authentication middleware"

# Start MCP server
graphrag serve --db ./my-project/.graphrag/index.db

MCP Configuration

Add to your Claude Desktop / Cursor config:

{
  "mcpServers": {
    "graphrag": {
      "command": "graphrag",
      "args": ["serve", "--db", "/path/to/project/.graphrag/index.db"]
    }
  }
}

Available MCP Tools

| Tool | Description | |------|-------------| | search_codebase | Semantic search across indexed code entities | | get_function_context | Get a function/class with full graph context (callers, callees, imports) | | find_usages | Find all usages of a function, class, or variable |

With Embeddings

Set OPENAI_API_KEY and use --embed:

export OPENAI_API_KEY=sk-...
graphrag index ./my-project --embed

How It Works

  1. Parse — Extracts functions, classes, imports/exports using regex-based parsing
  2. Graph — Builds entity relationship graph (contains, imports, calls, extends)
  3. Store — Persists to SQLite with full-text search indexes
  4. Search — Text search + graph traversal for context-rich results
  5. Serve — MCP server exposes tools for AI-assisted code exploration

Comparison

| Feature | GraphRAG | Sourcegraph | Codeium | |---------|----------|-------------|---------| | Self-hosted | ✅ Local SQLite | ❌ Server required | ❌ Cloud | | Privacy | ✅ No code leaves machine | ⚠️ Depends on deployment | ❌ Cloud-processed | | MCP support | ✅ Built-in | ❌ | ❌ | | Setup time | < 1 min | Hours | Minutes | | Cost | Free | $$$$ | Free tier limited | | Graph relationships | ✅ | ✅ | ❌ | | Languages | TS/JS/Python | 30+ | 70+ |

Programmatic API

import { GraphDB, parseFile } from '@phoenixaihub/graphrag';

const db = new GraphDB('.graphrag/index.db');
const result = parseFile('./src/main.ts');

for (const entity of result.entities) {
  db.insertEntity(entity);
}

const results = db.searchEntities('handler', 5);
console.log(results);

License

MIT