Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here
obsidian-mcp logo

obsidian-mcp

cferreira-local

OtherClaude Codeby christopherferreira9

Summary

Save curated notes to an Obsidian vault from Claude Code conversations

Install to Claude Code

/plugin install obsidian-mcp@cferreira-local

Run in Claude Code. Add the marketplace first with /plugin marketplace add christopherferreira9/obsidian-mcp if you haven't already.

README.md

obsidian-mcp

A Claude Code plugin that saves curated notes from conversations into an Obsidian vault.

MCP Tools

  • save_note — Save a markdown note with title, content, optional folder and tags
  • list_folders — List available folders in the vault
  • read_note — Read a note by relative path

Setup

1. Build the MCP server

cd plugin/server
npm install
npm run build

Or use the build script:

./plugin/scripts/build.sh

2. Configure vault path

Edit plugin/.mcp.json and set OBSIDIAN_VAULT_PATH to your vault's absolute path:

{
  "mcpServers": {
    "obsidian-vault": {
      "type": "stdio",
      "command": "node",
      "args": ["${CLAUDE_PLUGIN_ROOT}/server/dist/index.js"],
      "env": {
        "OBSIDIAN_VAULT_PATH": "/path/to/your/obsidian/vault"
      }
    }
  }
}

3. Choose your install method

Option A: MCP only (just the tools)

If you only need the MCP tools (save_note, list_folders, read_note), add this to your ~/.claude/settings.json:

{
  "mcpServers": {
    "obsidian-vault": {
      "type": "stdio",
      "command": "node",
      "args": ["/absolute/path/to/obsidian-mcp/plugin/server/dist/index.js"],
      "env": {
        "OBSIDIAN_VAULT_PATH": "/path/to/your/obsidian/vault"
      }
    }
  }
}

Restart Claude Code to activate.

Option B: Full plugin (tools + skill + slash command)

Installing as a plugin adds:

  • /save-to-obsidian slash command
  • obsidian-save skill for natural language triggers
  • Auto-loaded vault conventions via CLAUDE.md

Register the repo as a local marketplace and install:

claude plugin marketplace add /path/to/obsidian-mcp
claude plugin install obsidian-mcp

Restart Claude Code to activate.

Usage

Slash command (plugin install only)

/save-to-obsidian Our auth discussion folder=Investigations

Natural language (plugin install only)

> "Save a note about our discussion to Work Notes"

> "Pull my recent discoveries from claude-mem and save to obsidian"

Direct tool use (both options)

The MCP tools are always available once configured. Claude can call save_note, list_folders, and read_note directly.

Note format

Notes follow Obsidian conventions — no YAML frontmatter, inline tags after the title:

# Title

Tags:
#tag1 #tag2 #tag3

Content body...

## Source
From Claude Code conversation on 2026-03-06

Related plugins

Browse all →