MCP server for Obsidian

simple_search

Simple search for documents matching a specified text query across all files in the vault. Use this tool when you want to do a simple text search

Input Schema

NameRequiredDescriptionDefault
context_lengthNoHow much context to return around the matching string (default: 100)
queryYesText to a simple search for in the vault.

Input Schema (JSON Schema)

{ "properties": { "context_length": { "default": 100, "description": "How much context to return around the matching string (default: 100)", "type": "integer" }, "query": { "description": "Text to a simple search for in the vault.", "type": "string" } }, "required": [ "query" ], "type": "object" }