{ "server_info": { "name": "mcp-obsidian", "description": "No description provided.", "repo_url": "https://github.com/calclavia/mcp-obsidian", "server_type": "Official Integrations", "server_category": [ "Productivity" ], "server_version": "1.0.0" }, "tools": [ { "name": "read_notes", "description": "Read the contents of multiple notes. Each note's content is returned with its path as a reference. Failed reads for individual notes won't stop the entire operation. Reading too many at once may result in an error.", "input_schema": { "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": { "paths": { "type": "array", "items": { "type": "string" } } }, "required": [ "paths" ], "additionalProperties": false } }, { "name": "search_notes", "description": "Searches for a note by its name. The search is case-insensitive and matches partial names. Queries can also be a valid regex. Returns paths of the notes that match the query.", "input_schema": { "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": { "query": { "type": "string" } }, "required": [ "query" ], "additionalProperties": false } } ], "resources": [], "prompts": [] }