/ Directory / Playground / Obsidian MCP (Stavrakis)
● Community StevenStavrakis ⚡ Instant

Obsidian MCP (Stavrakis)

by StevenStavrakis · StevenStavrakis/obsidian-mcp

A simple MCP server for Obsidian — list, read, search, create, and edit notes.

Obsidian MCP (Stavrakis) is a MCP server maintained by StevenStavrakis. A simple MCP server for Obsidian — list, read, search, create, and edit notes. See README for installation and configuration: https://github.com/StevenStavrakis/obsidian-mcp

Why use it

Key features

Live Demo

What it looks like in practice

obsidian-mcp-steven.replay ▶ ready
0/0

Install

Pick your client

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "obsidian-mcp-steven": {
      "command": "npx",
      "args": [
        "-y",
        "@stevenstavrakis/obsidian-mcp-steven"
      ],
      "_inferred": true
    }
  }
}

Open Claude Desktop → Settings → Developer → Edit Config. Restart after saving.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "obsidian-mcp-steven": {
      "command": "npx",
      "args": [
        "-y",
        "@stevenstavrakis/obsidian-mcp-steven"
      ],
      "_inferred": true
    }
  }
}

Cursor uses the same mcpServers schema as Claude Desktop. Project config wins over global.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "obsidian-mcp-steven": {
      "command": "npx",
      "args": [
        "-y",
        "@stevenstavrakis/obsidian-mcp-steven"
      ],
      "_inferred": true
    }
  }
}

Click the MCP Servers icon in the Cline sidebar, then "Edit Configuration".

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "obsidian-mcp-steven": {
      "command": "npx",
      "args": [
        "-y",
        "@stevenstavrakis/obsidian-mcp-steven"
      ],
      "_inferred": true
    }
  }
}

Same shape as Claude Desktop. Restart Windsurf to pick up changes.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "obsidian-mcp-steven",
      "command": "npx",
      "args": [
        "-y",
        "@stevenstavrakis/obsidian-mcp-steven"
      ]
    }
  ]
}

Continue uses an array of server objects rather than a map.

~/.config/zed/settings.json
{
  "context_servers": {
    "obsidian-mcp-steven": {
      "command": {
        "path": "npx",
        "args": [
          "-y",
          "@stevenstavrakis/obsidian-mcp-steven"
        ]
      }
    }
  }
}

Add to context_servers. Zed hot-reloads on save.

claude mcp add obsidian-mcp-steven -- npx -y @stevenstavrakis/obsidian-mcp-steven

One-liner. Verify with claude mcp list. Remove with claude mcp remove.

Use Cases

Real-world ways to use Obsidian MCP (Stavrakis)

Use Obsidian MCP (Stavrakis) for its primary workflow

👤 Claude Code / MCP client users ⏱ ~20 min intermediate

When to use: See repo README for canonical use cases.

Prerequisites
  • Repo cloned or package installed — See https://github.com/StevenStavrakis/obsidian-mcp
Flow
  1. Install
    Install Obsidian MCP (Stavrakis) per README.✓ Copied
    → Tool/skill registered with client
  2. Configure
    Provide credentials/config as instructed.✓ Copied
    → Successful auth/init
  3. Use
    Run a sample task with Obsidian MCP (Stavrakis).✓ Copied
    → Expected output

Outcome: You can drive the documented workflow end-to-end.

Pitfalls
  • Skipping README — Read the repo README and CHANGELOG before shipping to prod.

Tools

What this MCP exposes

ToolInputsWhen to callCost
primary see README Primary action free

Cost & Limits

What this costs to run

API quota
None of its own; bounded by upstream provider quotas if any
Tokens per call
Depends on usage
Monetary
Open source — check repo LICENSE
Tip
Review upstream API costs (if any) before automating.

Security

Permissions, secrets, blast radius

Minimum scopes: Whatever the upstream provider requires
Credential storage: Env vars or local config — never commit secrets
Data egress: Forwards data per its README
Never grant: Full admin to untrusted prompts

Troubleshooting

Common errors and fixes

Auth fails

Verify credentials and required scopes match README.

Verify: Re-read repo README auth section.
Tool not found by client

Ensure MCP client config points to correct command/path.

Verify: Restart the client after editing config.

More

Resources

📖 Read the official README on GitHub

🐙 Browse open issues

🔍 Browse all 400+ MCP servers and Skills