obsidian-mcp-server
Enables native Excalidraw automation within Obsidian, allowing creation, validation, updating, layout, linking, focusing, exporting, and embedding of Excalidraw drawings in notes.
Provides comprehensive tools for reading, writing, searching, and surgically editing notes, tags, and frontmatter within an Obsidian vault, including workspace control, command execution, and file/folder management.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@obsidian-mcp-serversearch my vault for notes about project alpha"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
This repository is thehuaqing0 custom edition, based on
cyanheads/obsidian-mcp-server v3.5.0
under the Apache-2.0 license. It preserves the upstream server and adds the local workspace,
vault-structure, and native Excalidraw automation used by this edition. The npm and MCPB install
links below still point to the upstream distribution; this custom edition is currently source-only.
Tools
Thirty-one tools cover note content, metadata, backlinks, native Excalidraw automation, and complete vault structure management, plus a guarded escape hatch for Obsidian command-palette commands.
Tool Name | Description |
| Read a note as raw content, full structured form (content + frontmatter + tags + stat, with optional written links, resolved links, and backlinks), structural document map, or a single section. |
| List notes and subdirectories under a vault path. Recursive walk (default depth 2, max depth 20; 1000-entry cap) with optional |
| List vault tags with usage counts, including hierarchical parents. Ordered by count descending and capped at |
| List Obsidian command-palette commands, optionally filtered by |
| Search the vault by text, JSONLogic, or BM25-ranked Omnisearch (when the plugin is reachable). Results paginate via opaque cursors. |
| Read compact semantic summaries from a native |
| Validate Excalidraw parsing, stable semantic IDs, geometry, and relation references. |
| Create a native Excalidraw drawing as one semantic batch of nodes, bound relations, and frames. |
| Idempotently add semantic nodes, relations, or frames to an existing drawing. |
| Surgically update managed drawing elements by stable semantic ID. |
| Delete selected managed elements while preserving the drawing file and unrelated content. |
| Arrange managed nodes into deterministic relation-depth layers. |
| Attach or replace an Obsidian link on a managed drawing element by stable semantic ID. |
| Focus selected semantic elements in the live Excalidraw view and dim or restore surrounding elements. |
| Render a native Excalidraw drawing to a bounded PNG preview through the plugin export API. |
| Idempotently append a validated Excalidraw wiki-embed to an existing Markdown note. |
| Create a note, replace a single section in place, or — with |
| Append content to a note. Without |
| Surgical |
| Search-replace inside a single note, scoped to the body by default. Literal or regex matching with whole-word, whitespace-flexible, and case-sensitivity options; supports capture-group replacement. |
| Atomic |
| Add, remove, or list tags. Defaults to the frontmatter |
| Create a vault folder and any missing parent folders through Obsidian. |
| Move or rename a vault file or folder through Obsidian's FileManager so internal links participate in link updates. |
| Permanently delete a note. Opt-in via |
| Delete a folder and all descendants through Obsidian trash or permanent deletion. Opt-in via |
| Open a file in the Obsidian app UI, with |
| Inspect tabs, panes, sidebars, active file, and Markdown editor modes. |
| Control sidebars, tabs, splits, leaf focus/close, Markdown editor mode, and built-in search through typed actions. |
| Capture the Obsidian window as a bounded MCP image block for visual verification; denied when folder-scoped permissions are active. |
| Execute an Obsidian command-palette command by ID. Opt-in via |
obsidian_get_note
Read a note in one of four projections, addressed by vault path, the active file, or a periodic note (daily, weekly, monthly, quarterly, yearly).
format: "content"— raw markdown bodyformat: "full"— content, frontmatter, tags, and file metadata; passincludeLinks: trueto include written outgoing references plus Obsidian-resolved outgoing links and backlinks (vault-internal only — external URLs are filtered)format: "document-map"— catalog of headings, block references, and frontmatter fieldsformat: "section"— single heading/block/frontmatter section value (requiressection); heading sections include the full subtree under that heading
Pair the document-map projection with obsidian_patch_note to discover edit targets before patching.
obsidian_search_notes
Up to three search modes selected by mode:
text— substring match with surrounding context windows.contextLengthcontrols characters of context per side of each match (default 100; bump it for more context per hit). OptionalpathPrefixfilter (text mode only — passingpathPrefixin any other mode is rejected withpath_prefix_invalid_mode).jsonlogic— JSONLogic tree evaluated againstpath,content,frontmatter.<key>,tags, andstat.{ctime,mtime,size}; customglobandregexpoperators, both taking[PATTERN, VALUE]— pattern first, then the field reference:{"glob": ["Projects/*.md", {"var": "path"}]}. The reverse order compiles the note's own field as the pattern:globthen matches nothing, andregexpfails outright on whatever the field parses as. This is also how backlinks are expressed, since there is no dedicated tool or upstream endpoint for them:{"regexp": ["\\[\\[Target Note(\\||#|\\]\\])", {"var": "content"}]}returns every note whose body wikilinksTarget Note.omnisearch— BM25-ranked search via the community Omnisearch plugin. Supports quoted phrases,-exclusion,path:/ext:filters, typo tolerance, PDF + OCR coverage (via Text Extractor), and visual-concept image matches when AI Image Analyzer indexing is enabled. Only present in the mode enum when the plugin's HTTP server is reachable at startup; the upstream hard-caps results at 50 — narrow the query to surface more (the response carriestruncated: truewhen the cap was likely hit).
Results paginate via opaque cursors per the MCP 2025-11-25 spec: omit cursor for the first page, then pass nextCursor from the prior response. Every result carries totalCount (post-path-policy, pre-pagination); nextCursor is omitted on the last page. Text-mode hits are additionally clipped per file at maxMatchesPerHit (default 10) so a single match-heavy note can't blow the response budget — clipped hits carry truncated: true and totalMatches.
obsidian_write_note
Create or surgically replace, with a protective default against accidental whole-file overwrites.
Without
section— full-filePUT. Refuses to clobber an existing file unlessoverwrite: trueis set. Thefile_exists(Conflict) error suggestsobsidian_patch_note/obsidian_append_to_note/obsidian_replace_in_notefor in-place edits.With
section—PATCH-with-replace against the named heading/block/frontmatter field, leaving the rest of the file untouched. Theoverwriteflag is ignored in section mode.
The output reports created: true when the call brought a new file into existence; false when it replaced an existing one or targeted a section. Every mutating tool also returns previousSizeInBytes and currentSizeInBytes so an agent can spot accidental clobbers, unexpected upstream behavior, or a typo path that landed at the wrong file.
obsidian_append_to_note
A combined upsert + section-append primitive that mirrors the upstream Local REST API behavior:
Without
section—POSTto/vault/{path}. Appends when the file exists, creates the file with your content as the entire body when it doesn't. The output'screated: trueflags the second branch so the agent can notice when a typo path or a not-yet-created daily note silently turned into a brand-new file.With
section—PATCH-with-append against the named heading, block reference, or frontmatter field. The file must exist (PATCH preflight throwsnote_missingotherwise). PasscreateTargetIfMissing: trueto bring the section itself into existence inside an existing file. Block-reference targets concatenate adjacent to the block line without a separator — include a leading newline incontentif you want one.
previousSizeInBytes is 0 on the upsert-create branch and the actual file size otherwise; currentSizeInBytes is the post-write size read from the upstream after the operation. Compare deltas against Buffer.byteLength(content) to detect auto-newline injection or concurrent writers.
obsidian_patch_note
Surgical edits at a single document target.
operation: "append"adds after the sectionoperation: "prepend"adds before the sectionoperation: "replace"swaps it outTargets: heading path, block reference ID, or frontmatter field
Heading targets accept either the full Parent::Child path or a bare leaf name. A bare leaf that matches exactly one heading is expanded to its full path before the write, and the response echoes the locator the edit landed on; a leaf matching several headings is rejected with ambiguous_section, whose error data lists the candidate paths. The same resolution applies to obsidian_write_note and obsidian_append_to_note with section.
Use obsidian_get_note with format: "document-map" to discover what targets exist before patching.
obsidian_replace_in_note
Search-replace for edits that don't fit obsidian_patch_note's structural targets. The note is fetched, replacements are applied sequentially (each sees the previous output), and the result is written back in a single PUT.
scope selects what the replacements run over:
body(default) — the text after the YAML frontmatter block. The block is re-attached from the original bytes, so it comes back byte-identical.frontmatter— only the YAML between the---fences. The fences themselves are never matched.both— each replacement runs over the frontmatter and then the body;perReplacement[]reportsbodyCountandfrontmatterCountseparately.
With the frontmatter in scope, the rewritten YAML is re-parsed before anything is written: if it no longer parses as a mapping of properties, the call fails with frontmatter_invalid and the note keeps its original bytes. That check catches YAML that breaks — an unquoted : in a scalar, a list marker rewritten into an alias, a stray quote. It cannot catch an edit that stays well-formed while meaning something else, such as a substring collision that renames a key or a replacement that drops a scalar's quotes and changes its type. Prefer obsidian_manage_frontmatter for typed edits to a single property.
Per-replacement options:
useRegex— treatsearchas an ECMAScript regex. WithuseRegex: true, the replacement honors$1/$&capture-group references.caseSensitive— whenfalse, match case-insensitivelywholeWord— wrap the pattern in\b…\b; works in both literal and regex modesflexibleWhitespace— substitute any run of whitespace insearchwith\s+. Literal mode only — has no effect whenuseRegex: true(express it directly).replaceAll— whenfalse, only the first match is replaced. Underscope: 'both'that one substitution goes to the frontmatter when it matches there, and to the body otherwise.
Literal mode preserves $1 / $& in the replacement verbatim — only useRegex: true expands capture-group references.
obsidian_manage_tags
Add, remove, or list tags on a note. Operates on one of two representations, defaulting to the canonical Obsidian frontmatter location:
location: 'frontmatter'(default) — only the frontmattertags:array; the note body is left untouchedlocation: 'inline'— only inline#tagsyntax in the body;addappends#tagat end-of-filelocation: 'both'— opt-in reconciliation across both representations
add ensures the tag is present in the requested location(s); remove strips it; list ignores the input tags array. Inline #tag occurrences inside fenced code blocks are intentionally left alone.
Inline mode reads and writes the note body only — a # inside a YAML scalar is frontmatter, so it is neither listed as an inline tag nor rewritten by a removal. Removing an inline tag takes exactly one adjacent horizontal space with it — the one before the tag, or the one after when no space precedes it; every other byte survives, including nested list indentation, four-space indented code blocks, trailing two-space hard line breaks, and table cell padding.
obsidian_delete_note
Permanently delete a note. Off by default. Set OBSIDIAN_ENABLE_DELETE=true to expose it in tools/list. The first call answers with a confirmation request rather than a deletion — the prompt includes the file's byte size, so the destructive blast radius is visible before the user confirms — and the tool is retried with the answer. Declining or cancelling fails the call with cancelled and issues no DELETE; the destructiveHint annotation also surfaces the operation in the host's approval flow. The output reports previousSizeInBytes (size at the moment of deletion) and currentSizeInBytes: 0.
The confirmation is not optional and has no fallback path: a client that cannot serve the input round-trip cannot complete a delete. Every other tool is unaffected.
Vault structure tools
obsidian_create_folder creates nested folders idempotently. obsidian_move_path moves or renames either files or folders through Obsidian's native FileManager, creating missing destination parents and allowing Obsidian to update internal links. obsidian_delete_folder removes a folder recursively using Obsidian's configured trash behavior by default, or permanent deletion when explicitly requested; it is gated by OBSIDIAN_ENABLE_DELETE=true together with note deletion.
obsidian_execute_command
Dispatch an Obsidian command-palette command by ID (discoverable via obsidian_list_commands). Behavior is command-dependent — some commands open UI, others delete files or close the vault.
Off by default. When OBSIDIAN_ENABLE_COMMANDS is unset, both obsidian_execute_command and its discovery partner obsidian_list_commands are wrapped with disabledTool() — absent from tools/list (the LLM can't invoke them) but still visible in the operator-facing manifest with a hint to enable them.
Related MCP server: Obsidian Tools MCP Server
Path policy (folder-scoped permissions)
Three optional env vars gate which vault paths each tool can target. Default unset = full vault for both reads and writes — backwards compatible.
Goal | Config |
Default (current behavior) | all unset |
Read everywhere, write only in |
|
Read only |
|
Read-only deployment — no writes anywhere |
|
Matching is prefix-based with implicit recursion, case-insensitive, with trailing slashes normalized. projects/ matches projects/a.md, projects/sub/b.md, etc.
Write paths are implicitly readable — you can't sanely edit what you can't see. So a read passes when the target matches READ_PATHS or WRITE_PATHS.
OBSIDIAN_READ_ONLY=true short-circuits before the path checks — every write tool and the command-palette pair are wrapped with disabledTool() at startup (absent from tools/list), and any write that still reaches the service is denied at runtime regardless of WRITE_PATHS.
Denies are typed path_forbidden (JSON-RPC code Forbidden) with the active scope echoed back in data.recovery.hint and data.activeScope, so the LLM can self-correct without inspecting server logs. Search results from obsidian_search_notes are filtered against READ_PATHS silently — surfacing a "we hid N hits" indicator would defeat the gate.
Tag listing is vault-wide. obsidian_list_tags and the obsidian://tags resource aggregate tag names across the whole vault and are not narrowed by OBSIDIAN_READ_PATHS — they take no path to gate, so tag names (never note contents) from outside the read scope can surface.
The startup banner logs the active scope so operators can verify their config at boot.
Resources
Type | URI | Description |
Resource |
| A note in the vault — content, frontmatter, tags, and file metadata. |
Resource |
| All tags found across the vault, with usage counts. |
Resource |
| Server reachability, auth status, plugin/Obsidian version info, and the plugin manifest. |
All resource data is also reachable via tools — obsidian_get_note for obsidian://vault/{+path}, obsidian_list_tags for obsidian://tags. Resources exist for clients that prefer attaching a specific note or vault snapshot to a conversation. The tag pair is not a mirror: obsidian://tags keeps snapshot semantics and returns the upstream payload whole and unsorted, while obsidian_list_tags orders by count and caps.
Features
Built on @cyanheads/mcp-ts-core:
Declarative tool and resource definitions — single file per primitive, framework handles registration and validation
Unified error handling — handlers throw, framework catches, classifies, and formats. Tools advertise their failure surface via typed
errors[]contracts.Server-level
instructionsoninitialize— surfaces deployment-specific orientation (active path policy, read-only mode, command-palette toggle) to spec-compliant clients alongside the static tool/resource catalogPluggable auth on the HTTP transport:
none,jwt,oauthStructured logging with optional OpenTelemetry tracing
STDIO and Streamable HTTP transports
The server itself is stateless — every tool call hits the Local REST API directly. The framework's storage backends, request-state KV, and progress streams aren't used here; Obsidian is single-vault and there's nothing to persist between calls.
Obsidian-specific:
Wraps the Obsidian Local REST API plugin — typed client, deterministic error mapping
Section-aware editing across headings, block references, and frontmatter fields via
PATCH-with-target operationsTag reconciliation across both representations: frontmatter
tags:array and inline#tagsyntax (skipping fenced code blocks)Search across up to three modes: text, JSONLogic, and (when the plugin is reachable) BM25-ranked Omnisearch — cursor-paginated per the MCP 2025-11-25 spec, with per-file match clipping in text mode
Required human-in-the-loop confirmation for destructive deletes — a multi-round-trip
input_requiredround served on both protocol revisions, with no unconfirmed path through the toolNative vault structure management: create folders, move/rename files or folders with Obsidian link updates, and delete folders through trash or permanent removal
Native Excalidraw Automation API integration: semantic create/read/add/update/delete, deterministic layout, integrity validation, PNG preview export, and idempotent note embedding
Folder-scoped read/write permissions via
OBSIDIAN_READ_PATHS/OBSIDIAN_WRITE_PATHSand a globalOBSIDIAN_READ_ONLYkill switch — denies are typedpath_forbiddenwith the active scope echoed back in the error dataOpt-in command-palette pair (
obsidian_list_commands+obsidian_execute_command) — registered only whenOBSIDIAN_ENABLE_COMMANDS=trueForgiving path resolution on
obsidian_get_noteandobsidian_open_in_ui— silently retries case-mismatched paths against the canonical filename, throwsConflicton ambiguous case matches, and enrichesNotFoundwithDid you mean: …?suggestions when only near-matches exist.obsidian_delete_noteis deliberately excluded — a destructive op shouldn't silently rewrite the target path.
Getting started
Add the following to your MCP client configuration file. The Obsidian Local REST API plugin must be installed and enabled in your vault — see Prerequisites.
{
"mcpServers": {
"obsidian-mcp-server": {
"type": "stdio",
"command": "bunx",
"args": ["obsidian-mcp-server@latest"],
"env": {
"MCP_TRANSPORT_TYPE": "stdio",
"MCP_LOG_LEVEL": "info",
"OBSIDIAN_API_KEY": "your-local-rest-api-key"
}
}
}
}Or with npx (no Bun required):
{
"mcpServers": {
"obsidian-mcp-server": {
"type": "stdio",
"command": "npx",
"args": ["-y", "obsidian-mcp-server@latest"],
"env": {
"MCP_TRANSPORT_TYPE": "stdio",
"MCP_LOG_LEVEL": "info",
"OBSIDIAN_API_KEY": "your-local-rest-api-key"
}
}
}
}For Streamable HTTP, set the transport and start the server. Inline env vars work for one-off runs; for repeated use, copy values into .env (see .env.example) and run bun run start:http.
MCP_TRANSPORT_TYPE=http OBSIDIAN_API_KEY=... bun run start:http
# Server listens at http://127.0.0.1:3010/mcp by defaultPrerequisites
Bun v1.3.0 or higher (or Node.js v24+).
The Obsidian Local REST API plugin, v4.0.0 through v5.x, installed and enabled in your vault. Generate an API key in Settings → Community Plugins → Local REST API and copy it into
OBSIDIAN_API_KEY. Plugin v6.0 removes the markdown-patch 1.x wire format this server pins for section-targeted writes and the document map.Periodic-note targets (
target: { "type": "periodic" }) additionally need plugin v5.0.1 or earlier — v5.0.2 removed the built-in/periodic/routes. Every other target type is unaffected.An MCP client that can answer an input request (elicitation).
obsidian_delete_notealways asks for confirmation before deleting, so a client without that support can read and write notes but cannot delete one.Optional: the Obsidian Excalidraw plugin installed and enabled to use the eleven drawing tools. Other note and vault tools do not require it.
This server defaults to
http://127.0.0.1:27123for simplicity. Enable "Non-encrypted (HTTP) Server" in the plugin settings to use it. To use the always-on HTTPS port instead, setOBSIDIAN_BASE_URL=https://127.0.0.1:27124; the plugin's self-signed cert is handled byOBSIDIAN_VERIFY_SSL=false(the default).
Installation
Clone the repository:
git clone https://github.com/cyanheads/obsidian-mcp-server.gitNavigate into the directory:
cd obsidian-mcp-serverInstall dependencies:
bun installConfigure environment:
cp .env.example .env # edit .env and set OBSIDIAN_API_KEY
Configuration
Variable | Description | Default |
| Required. Bearer token for the Obsidian Local REST API plugin. | — |
| Base URL of the Local REST API plugin. Use |
|
| Verify the TLS certificate. Default |
|
| Per-request timeout in milliseconds. |
|
| Obsidian CLI executable for native file/folder structure operations. It is invoked directly without a shell. |
|
| Optional exact vault name for CLI operations. When unset, the active vault is used. | unset |
| Opt-in flag for the command-palette pair ( |
|
| Opt-in flag for note and folder deletion. Off by default, so both delete tools are absent from |
|
| Comma-separated vault-relative folder allowlist for read operations. Prefix-based with implicit recursion; case-insensitive; trailing slashes normalized. Unset = full vault. Write paths are implicitly readable. | unset |
| Comma-separated vault-relative folder allowlist for write operations. Same syntax as | unset |
| Global kill switch. When |
|
| Override URL for the Omnisearch plugin's HTTP server. When unset, derives from | derived |
| Transport: |
|
| Host for the HTTP server. |
|
| Port for the HTTP server. |
|
| Endpoint path for the JSON-RPC handler. |
|
| Public origin override for TLS-terminating reverse-proxy deployments (landing page, Server Card, RFC 9728 metadata). | unset |
| Auth mode: |
|
| Required when | — |
| When |
|
| Log level (RFC 5424). |
|
| Directory for log files (Node.js only). |
|
| Enable OpenTelemetry instrumentation (spans, metrics, completion logs). |
|
See .env.example for the full list of optional overrides.
Running the server
Local development
Build and run the production version:
# One-time build bun run rebuild # Run the built server bun run start:stdio # or bun run start:httpRun checks and tests:
bun run devcheck # Lint, format, typecheck, security, changelog sync bun run test # Vitest test suite bun run lint:mcp # Validate MCP definitions against spec
Docker
docker build -t obsidian-mcp-server .
docker run --rm -e OBSIDIAN_API_KEY=your-key -p 3010:3010 obsidian-mcp-serverThe Dockerfile defaults to HTTP transport, stateless session mode, and logs to /var/log/obsidian-mcp-server. OpenTelemetry peer dependencies are installed by default — build with --build-arg OTEL_ENABLED=false to omit them.
The image binds to 0.0.0.0 inside the container (required for Docker port mapping). For any deployment reachable beyond your own machine, set MCP_AUTH_MODE=jwt (with MCP_AUTH_SECRET_KEY) or oauth — otherwise the listener forwards your OBSIDIAN_API_KEY to the vault on behalf of every caller.
Project structure
Directory | Purpose |
|
|
| Server-specific environment variable parsing ( |
| Local REST API client, frontmatter operations, section extractor, domain types. |
| Tool definitions ( |
| Resource definitions ( |
| Prompt definitions (currently empty — CRUD/search shape doesn't benefit from a structured template). |
| Vitest tests mirroring |
| Upstream OpenAPI spec for the Local REST API plugin and the generated |
| Per-version release notes; |
Development guide
See CLAUDE.md for development guidelines and architectural rules. The short version:
Handlers throw, framework catches — no
try/catchin tool logicUse
ctx.logfor request-scoped logging,ctx.statefor tenant-scoped storageRegister new tools and resources via the barrels in
src/mcp-server/*/definitions/index.tsWrap external API calls: validate raw → normalize to domain type → return output schema; never fabricate missing fields
Contributing
Bugs, feature requests, and documentation gaps belong in an issue — see CONTRIBUTING.md for what makes one actionable, and CODE_OF_CONDUCT.md for how we work together. Security reports go through SECURITY.md, never a public issue.
Pull requests are welcome for small, self-contained fixes. Run checks and tests before submitting:
bun run devcheck
bun run testLicense
Apache-2.0 — see LICENSE for details.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityDmaintenanceEnables direct file system access to Obsidian vaults with auto-discovery, full-text search, and note operations. Supports reading, writing, and searching across Obsidian notes without requiring plugins or REST API.64,785MIT
- FlicenseAqualityDmaintenanceEnables comprehensive management of Obsidian vaults with full CRUD operations, advanced search, link/tag extraction, backlinks discovery, frontmatter editing, and template-based note creation through natural language.16
- FlicenseNot gradedqualityNot gradedmaintenanceEnables AI assistants to read, write, search, and navigate Obsidian vault notes with support for CRUD operations, full-text search, graph navigation, daily notes, and frontmatter management.4,785
- AlicenseNot gradedqualityDmaintenanceEnables AI agents to manage Obsidian vaults through full CRUD operations, wikilink management, and section-level manipulation. It supports frontmatter editing, tag-based searching, and automated link updates to maintain vault integrity.MIT
Related MCP Connectors
Search your Obsidian vault to quickly find notes by title or keyword, summarize related content, a…
Search and reason over your Obsidian-style Markdown vault, right from ChatGPT.
Create, validate, edit, export (markdown/svg/png/mermaid), and search JSON Canvas files.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/huaqing0/obsidian-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server