# obsidian-mcp-secure

Secure bridge between Claude Desktop and Obsidian vault — OWASP Top 10 controls, official Anthropic MCP Registry listing, one-command install.

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y smithery mcp add wleandro-oliveira/obsidian-mcp-secure

# Browse available tools
npx -y smithery tool list wleandro-oliveira/obsidian-mcp-secure

# Get full schema for a tool
npx -y smithery tool get wleandro-oliveira/obsidian-mcp-secure read_note

# Call a tool
npx -y smithery tool call wleandro-oliveira/obsidian-mcp-secure read_note '{}'
```

## Tools (9)

- `read_note` — Read the full content of an Obsidian note by its vault path.
- `list_notes` — List all files and folders inside the vault or a specific subdirectory.
- `create_note` — Create a new Markdown note at the given vault path.
- `edit_note` — Overwrite the entire content of an existing note. The previous content is preserved in the audit log.
- `delete_note` — Permanently delete a note from the vault. Requires explicit confirmation.
- `search_notes` — Full-text and tag search across the entire vault using Obsidian's built-in search engine.
- `find_note_by_name` — Find notes by a partial name or folder keyword — case-insensitive, searches the full path including folder names.
- `list_tags` — List all tags used across the vault with their occurrence count. Sortable by name or frequency.
- `create_backlinks` — Add [[wikilinks]] pointing to related notes inside a '## Relacionadas' section of the source note. Creates the section …

```bash
# Get full input/output schema for a tool
npx -y smithery tool get wleandro-oliveira/obsidian-mcp-secure <tool-name>
```
