obsidian-mcp
Obsidian MCP
Obsidian 볼트에 AI 어시스턴트(Claude, Cursor 등)가 접근할 수 있게 해주는 MCP (Model Context Protocol) 서버입니다. 폴더를 탐색하고, 노트를 읽고, 생성, 편집, 이동, 이름 변경, 삭제할 수 있습니다 — 모두 AI 채팅에서 가능합니다.
요구 사항
Python 3.10+
uv (권장) 또는 pip
로컬 컴퓨터의 Obsidian 볼트
Related MCP server: mcp-obsidian
설치
# Clone the repo
git clone https://github.com/your-username/obsidian-mcp
cd obsidian-mcp
# Copy the env template and set your vault path
cp .env.example .env.env 파일을 편집하고 볼트 경로를 설정하세요:
OBSIDIAN_VAULT_PATH="/Users/you/Documents/MyVault"Obsidian에서 볼트 경로를 찾으려면: 설정 → 정보 → 볼트 경로.
서버 실행
개발 (MCP Inspector UI 사용)
uv run mcp dev server.py그러면 브라우저에서 MCP Inspector가 열리며 모든 도구를 대화형으로 테스트할 수 있습니다.
프로덕션
uv run server.pyCursor에 연결
.cursor/mcp.json (또는 Cursor 전역 MCP 설정)에 다음을 추가하세요:
{
"mcpServers": {
"obsidian": {
"command": "python",
"args": ["/absolute/path/to/obsidian-mcp/server.py"],
"env": {
"OBSIDIAN_VAULT_PATH": "/path/to/your/vault"
}
}
}
}/absolute/path/to/obsidian-mcp/server.py를 사용자 컴퓨터의 server.py 실제 경로로 바꾸고, /path/to/your/vault를 볼트 경로로 바꾸세요 (Obsidian에서 찾으려면: 설정 → 정보 → 볼트 경로).
Claude Desktop에 연결
claude_desktop_config.json에 다음을 추가하세요:
{
"mcpServers": {
"obsidian": {
"command": "uv",
"args": ["run", "/absolute/path/to/obsidian-mcp/server.py"],
"env": {
"OBSIDIAN_VAULT_PATH": "/path/to/your/vault"
}
}
}
}사용 가능한 도구
도구 | 설명 |
| 볼트 폴더 안의 하위 폴더와 노트를 나열합니다. 비워 두면 볼트 루트를 기준으로 합니다. |
| 노트의 전체 내용을 읽습니다 (경로는 볼트 루트 기준). |
| 새 노트를 만듭니다. 필요한 경우 중간 폴더도 생성합니다. |
| 기존 노트의 전체 내용을 교체합니다. |
| 볼트에서 노트를 삭제합니다. |
| 노트 이름을 바꾸되 같은 폴더에 유지합니다. |
| 노트를 다른 폴더로 이동합니다. 이동 과정에서 이름을 바꿀 수도 있습니다. 필요한 경우 대상 폴더를 생성합니다. |
| 폴더를 삭제합니다. 파일이 포함된 폴더를 삭제하려면 |
모든 경로는 볼트 루트를 기준으로 합니다. 예: "Projects/App/roadmap.md".
라이선스
MIT
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
- AlicenseNot gradedqualityDmaintenanceProvides an MCP server that allows AI assistants to interact with Obsidian vaults, enabling reading/writing notes, managing metadata, searching content, and working with daily notes.36MIT
- FlicenseAqualityDmaintenanceAn MCP server that enables AI assistants to interact with Obsidian vaults by providing tools for note management, full-text search, and link analysis. It supports comprehensive file operations, frontmatter manipulation, and daily note creation while ensuring security through path validation.191
- FlicenseNot gradedqualityDmaintenanceA local MCP server that wraps the Obsidian CLI to give AI assistants direct access to read, edit, and manage notes within an Obsidian vault. It enables advanced operations such as frontmatter property management, context-aware searching, and the execution of internal Obsidian commands.2
- AlicenseBqualityDmaintenanceAn MCP server that enables AI assistants to access and manage your local Obsidian vault through a standardized protocol.142,4721Apache 2.0
Related MCP Connectors
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
Driflyte MCP server which lets AI assistants query topic-specific knowledge from web and GitHub.
An MCP server that gives your AI access to the source code and docs of all public github repos
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/DavidBurckhardt/obsidian-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server