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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@ueric/mcp-obsidian

v1.1.1

Published

[![NPM Version](https://img.shields.io/npm/v/%40fazer-ai%2Fmcp-obsidian)](https://www.npmjs.com/package/@fazer-ai/mcp-obsidian)

Readme

MCP server for Obsidian (TypeScript + Bun)

NPM Version

A Model-Context-Protocol (MCP) server that lets Claude (or any MCP-compatible LLM) interact with your Obsidian vault through the Local REST API community plugin – written in TypeScript and runnable with bunx.


✨ Components

Tools

| Tool name | Description | |-----------|-------------| | obsidian_status | Returns basic details about the Obsidian Local REST API server and your authentication status | | obsidian_delete_active | Deletes the note that is currently active in the Obsidian UI | | obsidian_get_active | Retrieves the full content of the active note (Markdown or JSON view) | | obsidian_patch_active | Inserts, replaces or prepends content in the active note relative to a heading, block reference, or front-matter field | | obsidian_post_active | Appends Markdown to the end of the active note | | obsidian_put_active | Replaces the entire body of the active note | | obsidian_get_commands | Lists every command available in Obsidian’s command palette | | obsidian_execute_command | Executes a specific Obsidian command by its ID | | obsidian_open_file | Opens the given file inside Obsidian (creates it if missing); optional flag to open in a new leaf | | obsidian_delete_periodic | Deletes the current daily / weekly / monthly / quarterly / yearly note for the requested period | | obsidian_get_periodic | Returns the content of the current periodic note for the requested period | | obsidian_patch_periodic | Inserts / replaces content in a periodic note relative to a heading, block reference, or front-matter field | | obsidian_post_periodic | Appends Markdown to the periodic note (creates it if it doesn’t exist) | | obsidian_put_periodic | Replaces the entire body of a periodic note | | obsidian_search_dataview | Runs a Dataview-DQL query across the vault and returns matching rows | | obsidian_search_json_logic | Runs a JsonLogic query against structured note metadata | | obsidian_simple_search | Performs a plain-text fuzzy search with optional surrounding context | | obsidian_list_vault_root | Lists all files and directories at the root of your vault | | obsidian_list_vault_directory | Lists files and directories inside a specific folder of the vault | | obsidian_delete_file | Deletes a specific file (or directory) in the vault | | obsidian_get_file | Retrieves the content of a file in the vault (Markdown or JSON view) | | obsidian_patch_file | Inserts / replaces content in an arbitrary file relative to a heading, block reference, or front-matter field | | obsidian_post_file | Appends Markdown to a file (creates it if it doesn’t exist) | | obsidian_put_file | Creates a new file or replaces the entire body of an existing file |

See Obsidian's Local REST API specifications for more details.


Example prompts

# Summarize the latest “architecture call” note
# (Claude will transparently call list_files_in_vault → get_file_contents)
Get the contents of the last “architecture call” note and summarize them.

# Find all mentions of Cosmos DB
Search for all files where “Azure CosmosDb” is mentioned and explain the context briefly.

# Create a summary note
Summarize yesterday’s meeting and save it as “summaries/2025-04-24-meeting.md”. Add a short intro suitable for e-mail.

⚙️ Configuration

Obsidian REST API key

There are two ways to pass the Obsidian API key to the server:

  1. Server config (recommended) – pass it via the env field in your Claude (or other client) MCP-server declaration:
// claude_desktop_config.json
{
  "mcpServers": {
    "@fazer-ai/mcp-obsidian": {
      "command": "bunx",
      "args": ["@fazer-ai/mcp-obsidian@latest"],
      "env": {
        "OBSIDIAN_API_KEY": "your-obsidian-api-key"
      }
    }
  }
}

[!NOTE] Use @fazer-ai/mcp-obsidian@latest to ensure you always run the most up to date version of the server.

  1. Alternatively, you can use an .env file. Place the key in the .env you created above. Note it must be placed in the working directory where the MCP server is running.

Environment variables

You can use the .env.example file as reference to create your own .env file.

OBSIDIAN_API_KEY=   # Obtain this from the plugin settings in Obsidian
OBSIDIAN_PROTOCOL=http
OBSIDIAN_HOST=localhost
OBSIDIAN_PORT=27123 # Port the Local REST API plugin is bound to

🛠 Development

Running local version on Claude Desktop

After cloning this repo, you can update Claude's config to run your local version of the server instead of pulling from npm. This is useful for quickly testing changes before publishing.

[!NOTE] Keep in mind any changes you make on the code will only take effect after restarting the Claude Desktop app.

  1. Clone this repo and run bun install to install dependencies.
  2. Update your claude_desktop_config.json to point to your local version of the server:
// claude_desktop_config.json
{
  "mcpServers": {
    "@fazer-ai/mcp-obsidian": {
      "command": "bun",
      "args": ["/path/to/repo/src/index.ts"],
      "env": {
        "OBSIDIAN_API_KEY": "your-obsidian-api-key"
      }
    }
  }
}

[!IMPORTANT] Note we use bun instead of bunx here.

Debugging

MCP servers talk over stdio, so normal debuggers aren’t helpful.
Use the MCP Inspector:

npx @modelcontextprotocol/inspector bun /path/to/repo/src/index.ts

Open the URL it prints to step through requests (usually http://localhost:6274), inspect tool calls, and watch logs in real time.


📦 Publishing

  1. Update the version in package.json.
  2. Create GitHub release.
  3. Run bun publish.

License

MIT – see LICENSE.