Skip to main content
Glama
Amanaakash

obsidian-rag

by Amanaakash

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
OBSIDIAN_RAG_DBYesAbsolute path to the persistent Chroma directory
OBSIDIAN_RAG_MODELNoOllama embedding modelall-minilm:22m
OBSIDIAN_RAG_VAULTYesAbsolute path to the Obsidian vault
OBSIDIAN_RAG_COLLECTIONNoChroma collection nameobsidian_notes
OBSIDIAN_RAG_OLLAMA_HOSTNoOllama server addresshttp://localhost:11434

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

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
search_notesB

Semantically search indexed Obsidian notes and return cited passages.

read_noteA

Read one Markdown note or an exact heading using a safe relative path.

vault_statusA

Check local index availability, chunk count, and refresh state.

Prompts

Interactive templates invoked by user choice

NameDescription
ask_obsidianAnswer a question using the Obsidian vault with explicit citations.

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.9/5.0

Scored across 3 tools

Disambiguation5/5

Each tool targets a distinct operation: semantic search, direct note reading, and vault/index status. There is no overlap or ambiguity between them.

Naming Consistency4/5

search_notes and read_note follow a clear verb_noun pattern, but vault_status is a noun phrase rather than get_vault_status or check_vault_status. This is a minor deviation from an otherwise consistent snake_case convention.

Tool Count5/5

Three tools is appropriate for a focused RAG server covering search, retrieval, and system status. No tool feels redundant or missing enough to bloat the surface.

Completeness4/5

The core read/search/status workflow is well covered for a read-only Obsidian RAG server. A possible minor gap is the lack of an explicit refresh/reindex action, though the status tool reports refresh state.

Maintenance

ActivitySlowing
ResponsivenessNo issues