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

@yama662607/obsidian-companion-mcp

v0.3.8

Published

MCP server for Obsidian Companion

Readme

@yama662607/obsidian-companion-mcp

MCP server package for Obsidian Companion. This server provides semantic search, editor context awareness, and note management tools to AI agents.

Installation

Recommended: Global Installation

Installing globally allows for much faster startup times as it avoids the npx network check.

npm install -g @yama662607/obsidian-companion-mcp

Alternative: npx

npx @yama662607/obsidian-companion-mcp

Configuration

Set the OBSIDIAN_VAULT_PATH environment variable to point to your Obsidian vault.

Example for Claude Desktop:

{
  "command": "obsidian-companion",
  "env": {
    "OBSIDIAN_VAULT_PATH": "/Users/username/Documents/MyVault"
  }
}

Features

  • Multilingual Semantic Search: Uses multilingual-e5-small for high-quality cross-language search.
  • Local Persistence: Vector index and AI models are stored directly in your vault's plugin directory (.obsidian/plugins/companion-mcp/).
  • Degraded Mode: Works even when Obsidian is closed by accessing the file system directly.

Usage

AI agents can call the following tools:

  • list_notes: Folder-scoped note and directory listing with bounded pagination.
  • search_notes: Exact and metadata-aware vault search with read hints.
  • semantic_search_notes: Meaning-based search that returns bounded chunk results with read hints.
  • read_note: Read persisted note content, metadata, and edit handoff targets.
  • read_active_context: Read the active editor buffer and edit handoff targets.
  • edit_note: Unified edit tool for persisted notes and the active editor.
  • create_note: Create a markdown note.
  • patch_note_metadata: Patch YAML frontmatter metadata.
  • move_note: Move or rename a note within the vault.
  • delete_note: Delete a note.
  • get_semantic_index_status: Inspect semantic index readiness and pending work.
  • refresh_semantic_index: Rebuild the semantic index to completion.

Recommended workflow for large vaults:

  1. Use list_notes, search_notes, or semantic_search_notes to narrow candidates.
  2. Use read_note or read_active_context to inspect the exact target.
  3. Pass editTarget / editTargets.* directly into edit_note for follow-up edits.
  4. Use get_semantic_index_status when semantic results may still be incomplete.