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

obsidian-rag-mcp

v1.1.0

Published

MCP server for semantic search in Obsidian notes via RAG

Readme

Obsidian RAG MCP Server

MCP server for semantic search in your Obsidian notes via Claude Code.

Features

  • Semantic search (vector + fuzzy hybrid)
  • Multi-tenant authentication via VibeAcademy
  • Filter by project, folder, or category
  • Obsidian URL links in results

Prerequisites

  • Node.js 18+
  • A VibeAcademy account with API key
  • Indexed notes via the RAG webapp (https://obsidian-rag.matthieucousin.com)

Installation

# Install globally
npm install -g obsidian-rag-mcp

# Or use directly with npx
npx obsidian-rag-mcp

Configuration

Claude Code Configuration

Add to your Claude Code MCP settings (~/.config/claude/settings.json or project .mcp.json):

{
  "mcpServers": {
    "obsidian-rag": {
      "command": "npx",
      "args": ["obsidian-rag-mcp"],
      "env": {
        "VIBEACADEMY_API_KEY": "your-api-key"
      }
    }
  }
}

That's it! Only one environment variable needed.

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | VIBEACADEMY_API_KEY | Yes* | Your VibeAcademy API key | | RAG_API_URL | No | API URL (default: https://obsidian-rag.matthieucousin.com) | | VIBEACADEMY_ID | No | Direct user ID (dev mode only, bypasses API key verification) |

*VIBEACADEMY_API_KEY is required for production use.

Available Tools

rag_search

Search the knowledge base using semantic + fuzzy search.

Parameters:

  • query (required): Search query in natural language
  • projectId: Filter by project ID
  • folderIds: Filter by folder IDs
  • categoryIds: Filter by category IDs
  • limit: Max results (default: 10, max: 50)

Example:

Search my notes for React hooks best practices

rag_list_projects

List all available projects.

rag_list_folders

List indexed folders.

Parameters:

  • indexedOnly: Only return indexed folders (default: true)

rag_list_categories

List all categories.

rag_get_document

Get full content of a document.

Parameters:

  • filepath (required): Path to the document

Usage in Claude Code

Once configured, simply ask Claude:

Search my notes for information about authentication patterns
What do I have in my notes about React performance?
Find all documents in the "Backend" folder about database migrations

Development

# Clone the repo
git clone https://github.com/vibeacademy/obsidian-rag-mcp
cd obsidian-rag-mcp

# Install dependencies
npm install

# Create .env file
cp .env.example .env
# Edit .env with your credentials

# Run in dev mode
npm run dev

# Build
npm run build

# Run built version
npm start

Authentication Flow

  1. On startup, the server verifies your VIBEACADEMY_API_KEY with the VibeAcademy API
  2. If valid, it extracts your user ID for multi-tenant isolation
  3. All queries are filtered by your user ID via the RAG API

Architecture

Claude Code --> MCP Server --> RAG API --> Supabase + OpenAI
                (local)       (cloud)

The MCP server is a thin client that calls the RAG API. All heavy lifting (embeddings, vector search, database) happens server-side.

Changelog

v1.1.0

  • Simplified architecture: MCP now calls REST API instead of direct database access
  • Removed Supabase, OpenAI, and Fuse.js dependencies
  • Only VIBEACADEMY_API_KEY required (no more SUPABASE_* or OPENAI_* keys)

v1.0.0

  • Initial release with direct Supabase/OpenAI integration

License

MIT