obsidian-mcp-secure
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| LOG_DIR | No | Directory for the audit log files | ./logs |
| OBSIDIAN_HOST | No | Host (only 127.0.0.1 and localhost are accepted) | http://127.0.0.1 |
| OBSIDIAN_PORT | No | Port of the plugin's HTTP server | 27123 |
| OBSIDIAN_API_KEY | Yes | API key from the Local REST API plugin |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| read_noteB | Lê o conteúdo de uma nota do Obsidian pelo caminho |
| list_notesA | Lista arquivos e pastas do vault ou de um diretório específico |
| create_noteB | Cria uma nova nota no Obsidian |
| edit_noteA | Edita o conteúdo de uma nota existente (substitui o conteúdo inteiro) |
| delete_noteA | Deleta uma nota do vault. ATENÇÃO: ação irreversível. |
| search_notesA | Busca notas por conteúdo ou tag no vault |
| find_note_by_nameA | Encontra notas pelo nome (busca parcial, insensível a maiúsculas). Útil quando o caminho exato não é conhecido. |
| list_tagsA | Lista todas as tags usadas no vault com contagem de ocorrências |
| create_backlinksA | Adiciona wikilinks [[NomeDaNota]] na seção '## Relacionadas' da nota source. Cria a seção se não existir. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 9 tools
Each tool has a distinct purpose: reading, listing, creating, editing, deleting, searching by content/tag, searching by name, listing tags, and creating backlinks. No overlap; search_notes and find_note_by_name are clearly differentiated by search method.
All tool names follow a consistent verb_noun pattern in snake_case (e.g., read_note, list_notes, search_notes). Even longer names like find_note_by_name maintain the pattern.
9 tools is well-scoped for an Obsidian vault manager, covering core operations (CRUD, search, tags, backlinks) without unnecessary bloat. Each tool earns its place.
The tool set provides full CRUD, content and name search, tag listing, and backlink creation. Minor gaps like moving/renaming notes or batch operations are missing, but the core workflow is well-covered.