nkriman/obsidian-nexus
If you are the rightful owner of obsidian-nexus and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
Obsidian Nexus is a Model Context Protocol (MCP) server that integrates Claude Desktop with your Obsidian vault for efficient note management and family data organization.
read_note
Read any note from your vault.
write_note
Create or update a note.
append_to_note
Add content to an existing note.
list_notes
List all notes or search by directory.
search_notes
Search for content across your vault.
vault_status
Check vault configuration and stats.
Obsidian Nexus - Obsidian MCP Server
Connect Claude Desktop directly to your Obsidian vault for seamless note management and intelligent family data organization.
Overview
Obsidian Nexus is a Model Context Protocol (MCP) server that gives Claude Desktop direct access to your Obsidian vault. Simply configure your vault path and start managing your family's notes, todos, and knowledge base through natural conversation with Claude.
Key Features
š Direct Vault Access
- Read, write, and append to any note in your vault
- Automatic folder creation and organization
- Full markdown support with Obsidian linking
š Intelligent Search
- Search across all notes with context excerpts
- List notes by directory or pattern
- Find information instantly through natural queries
š Family Organization
- Pre-configured folder structure for family data
- Support for Daily Notes, Family members, and Themes
- Zero setup - just point to your vault
š”ļø Simple & Reliable
- No API keys required - Claude Desktop does the AI processing
- Local-only file operations for privacy
- Automatic vault structure creation
Quick Start
1. Installation
git clone https://github.com/nkriman/obsidian-nexus
cd obsidian-nexus
npm install
2. Configuration
Edit config.yaml
and set your vault path:
# Update this path to your Obsidian vault
vault_path: "/Users/yourname/Documents/Obsidian/YourVault"
# Optional: Configure family members
family:
people: ["Nick", "Sarah", "Leo", "Mia"]
3. Add to Claude Desktop
Add to your MCP settings (~/Library/Application Support/Claude/claude_desktop_config.json
):
{
"mcpServers": {
"obsidian-nexus": {
"command": "node",
"args": ["/path/to/obsidian-nexus/src/index.js"]
}
}
}
4. Restart Claude Desktop
That's it! Claude can now access your Obsidian vault.
Available Tools
š read_note
Read any note from your vault:
read_note path="Family/Leo.md"
āļø write_note
Create or update a note:
write_note path="Daily Notes/2025-06-22.md" content="# Today's Activities..."
ā append_to_note
Add content to an existing note:
append_to_note path="Family/Leo.md" content="## School Update\nGot an A on math test!"
š list_notes
List all notes or search by directory:
list_notes directory="Family"
š search_notes
Search for content across your vault:
search_notes query="doctor appointment"
š vault_status
Check vault configuration and stats.
Vault Structure
Obsidian Nexus automatically creates this organized structure:
YourVault/
āāā Daily Notes/
ā āāā 2025-06-22.md # Daily family logs
āāā Family/
ā āāā Leo.md # Individual family member notes
ā āāā Mia.md
ā āāā Nick.md
āāā Themes/
ā āāā Medical.md # Topical organization
ā āāā School.md
ā āāā Travel.md
āāā inbox/
ā āāā quick-notes.md # Temporary storage
āāā config/
āāā obsidian-nexus.yaml # Local configuration
Example Interactions
š Daily Family Logging
"Create a note for today about Leo's soccer practice and Mia's piano lesson"
Claude will:
- Create
Daily Notes/2025-06-22.md
- Add structured content about both activities
- Link to individual family member notes
š Finding Information
"When was Leo's last doctor appointment and what did they say?"
Claude will:
- Search across all notes for "Leo" + "doctor"
- Find relevant excerpts with context
- Provide a summary with source citations
š Organizing Knowledge
"Help me organize all the medical information scattered across my notes"
Claude will:
- Search for medical-related content
- Create organized theme notes
- Update family member notes with proper links
Configuration Options
Basic Configuration
vault_path: "/path/to/your/vault" # Required: Your Obsidian vault path
family:
people: ["Name1", "Name2"] # Optional: Family member tracking
templates:
daily_note: "Daily Notes/{{date}}.md"
person_note: "Family/{{person}}.md"
theme_note: "Themes/{{theme}}.md"
Advanced Options
structure:
create_folders: true # Auto-create folder structure
use_daily_notes: true # Enable daily notes pattern
backup_files: true # Keep backups of modified files
Use Cases
š Family Life Management
- Track kids' activities, appointments, and milestones
- Organize medical records and school communications
- Create searchable family knowledge base
š Personal Knowledge Management
- Research note organization and synthesis
- Project documentation and planning
- Learning logs and study materials
š¼ Work & Projects
- Meeting notes and action items
- Project documentation and progress tracking
- Team knowledge sharing and collaboration
Benefits Over Manual Obsidian
š¤ AI-Powered Organization
- Claude understands context and relationships
- Automatic note structure and linking
- Intelligent content synthesis
ā” Speed & Efficiency
- Natural language commands vs. manual clicking
- Instant search across entire vault
- Batch operations and smart suggestions
š Seamless Integration
- Works alongside Obsidian app
- Preserves all Obsidian features and plugins
- Standard markdown - no vendor lock-in
Troubleshooting
Common Issues
"Configuration file not found"
- Ensure
config.yaml
exists in project root - Check vault path is absolute and correct
"Vault path does not exist"
- Verify the path points to a valid directory
- Create the directory if it doesn't exist
"Permission denied"
- Check file/folder permissions on vault directory
- Ensure Obsidian app isn't locking files
Testing Your Setup
# Test the server directly
node src/index.js
# Check configuration
vault_status
Privacy & Security
- Local-only processing - no cloud dependencies
- File-based operations - standard markdown files
- No API keys required - Claude Desktop handles AI processing
- Open source - full code transparency
Roadmap
- Advanced templating system
- Plugin integration support
- Multi-vault management
- Real-time sync with Obsidian app
- Advanced search with tags and metadata
- Export/import utilities
Contributing
- Fork the repository
- Create a feature branch
- Add tests for new functionality
- Submit a pull request
License
MIT License - see LICENSE file for details.
Obsidian Nexus - Your vault, Claude's intelligence, perfect harmony.