Searches, reads, and analyzes local Obsidian vaults through filesystem and optional Local REST API access.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent — or use 1-click editor setup below.
This server is confirmed live — we successfully called its tools/list endpoint directly (see the verified badge above). We haven't yet sandbox-tested the stdio install command below specifically, which is a separate, ongoing check.
💡 Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Inspect callable tools, capabilities, and parameters exposed to AI agents by Easy Obsidian MCP.
obsidian_simple_searchsimple 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
obsidian_dataview_searchexecute a dataview query language (dql) query. dql is a powerful, sql-like language for querying obsidian notes based on metadata (frontmatter, inline fields), tags, folders, links, file properties (name, path, dates), and tasks. use it to filter, sort, group, and transform data from your obsidian vault. **key difference from sql:** dql executes queries sequentially, line by line, passing results between commands. this allows multiple 'where', 'sort', or 'group by' steps, unlike declarative sql. **finding people/names:** - search note titles: 'table file.name where contains(file.name, "ben")' - find notes linking to person: 'list from [[Ben]]' - search by person tag: 'list from #person/ben' **common patterns:** - get note metadata: 'table file.name, file.mtime from "NOTENAME"' - search by tag: 'list from #tag' - folder search: 'list from "folder/"' - backlinks: 'list from [[FILENAME]]' - all notes: 'list from ""' this tool is especially good at finding relationships between notes, metadata searches, and structured queries. use it when simple text search doesn't find what you need. see dataview documentation for full syntax: https://blacksmithgu.github.io/obsidian-dataview/
obsidian_get_file_contentretrieves the full content of a specific file from the obsidian vault.
obsidian_list_fileslists files and folders within a specified directory in the obsidian vault. if no directory is specified, lists items in the vault root.
obsidian_fuzzy_searchfuzzy search for notes using approximate matching. works even when obsidian api is unavailable. great for finding notes when you're not sure of exact spelling or phrasing.
obsidian_graph_searchanalyze links and connections between notes. finds orphaned notes, builds link graphs, and discovers note relationships. works without obsidian api.
The louis030195/easy-obsidian-mcp MCP server exposes an Obsidian vault to compatible AI clients through MCP. It is intended for knowledge-management tasks involving local notes, folders, metadata, tags, links, and tasks. The supplied tool list focuses on finding and inspecting vault content rather than sending data to an external hosted service.
The repository describes support for creating, reading, updating, and searching notes, while the explicitly listed MCP tools cover reading, listing, searching, Dataview queries, and graph analysis. Developers should verify the available tool definitions in the installed package if note mutation is required.
The server runs locally through the npm package @louis030195/mcp-obsidian, launched with npx. AI clients communicate with it over the MCP server configuration. Vault operations can use filesystem access, and the README documents an optional Obsidian Local REST API plugin for full features.
Simple search checks file contents for a text query. Fuzzy search is useful when the spelling or wording is uncertain and is described as working even when the Obsidian API is unavailable. Graph search examines links between notes, including orphan detection and relationship discovery, and also works without the API.
Dataview search accepts DQL, Obsidian Dataview’s query language. Queries can filter, sort, group, and transform results using fields such as frontmatter, inline fields, tags, folders, links, file names, paths, dates, and tasks. DQL processing is sequential, so later commands receive the results of earlier commands.
The louis030195/easy-obsidian-mcp MCP server can be added to Claude Desktop or Cursor by defining an MCP entry with the npx -y @louis030195/mcp-obsidian command. The README also gives a Claude Code command using the same package.
For the optional full-feature path, install and enable Obsidian’s Community Plugins feature named Local REST API, then place its API key in the OBSIDIAN_API_KEY environment variable. The README marks this API setup as optional. If connection problems occur, check that Obsidian is running, the Local REST API plugin is enabled when needed, and the configured key is correct.
obsidian_simple_search searches all vault files for matching text.obsidian_fuzzy_search finds notes using approximate matching.obsidian_dataview_search runs DQL queries over note metadata and relationships.obsidian_get_file_content retrieves the complete content of a specified file.obsidian_list_files lists files and folders at the vault root or within a selected directory.obsidian_graph_search analyzes note links, finds orphaned notes, and builds link relationships.Together, these tools support searches for tags, folders, backlinks, note titles, and structured metadata. Examples include listing notes from a folder, finding notes linked to a page, and selecting files modified during a period.
The tool list does not enumerate a dedicated create-note or update-note operation, despite the broader repository description mentioning create and update interactions. Confirm mutation support before designing workflows that write to a vault. Dataview queries must use DQL syntax rather than SQL syntax. API-dependent behavior may require Obsidian to be running with Local REST API enabled, while fuzzy and graph searches are specifically described as usable without the API.
Factual signals from GitHub, npm, and our automated checks — not a rating.
No reviews yet — be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/louis030195-easy-obsidian-mcp)<a href="https://allmcps.com/mcp/louis030195-easy-obsidian-mcp"><img src="https://allmcps.com/api/badge/louis030195-easy-obsidian-mcp?style=directory" alt="Easy Obsidian MCP on AllMCPs" /></a>