Skip to main content
Glama
aegntic

Obsidian Elite RAG MCP Server

setup-vault.sh13.1 kB
#!/bin/bash # Elite Obsidian RAG System - Vault Setup Script # Initializes a new vault with optimal structure for RAG workflows set -e VAULT_PATH="$1" if [ -z "$VAULT_PATH" ]; then echo "Usage: $0 <path-to-vault>" exit 1 fi echo "🚀 Initializing Elite RAG Vault at: $VAULT_PATH" # Create vault directory structure echo "📁 Creating vault structure..." mkdir -p "$VAULT_PATH"/{00-Core,01-Projects,02-Research,03-Workflows,04-AI-Paired,05-Resources,06-Meta,07-Archive,08-Templates,09-Links} # Create configuration files echo "⚙️ Creating configuration files..." # Obsidian configuration cat > "$VAULT_PATH/.obsidian/app.json" << 'EOF' { "legacyEditor": false, "livePreview": true, "promptDelete": false, "readableLineLength": true, "showLineNumber": true, "spellcheck": true, "strictLineBreaks": false, "foldHeading": true, "foldIndent": true, "showFrontmatter": true, "alwaysUpdateLinks": true, "useMarkdownLinks": false, "newFileLocation": "folder", "newFileFolderPath": "04-AI-Paired", "attachmentFolderPath": "05-Resources", "userIgnoreFilters": [ "01-Projects/.obsidian", "02-Research/.obsidian", "04-AI-Paired/.obsidian" ] } EOF # Create core templates echo "📋 Creating templates..." # Standard note template cat > "$VAULT_PATH/08-Templates/Standard Note.md" << 'EOF' --- # Note Metadata created: {{date}} modified: {{date}} tags: type: note status: active --- # {{title}} ## Summary {{cursor}} ## Core Content ## Connections - Related: - Contradicts: - Implies: ## Actions - [ ] ## Questions ## Metadata - **Context:** - **Priority:** - **Next Review:** EOF # Project template cat > "$VAULT_PATH/08-Templates/Project.md" << 'EOF' --- # Project Metadata created: {{date}} status: planning priority: medium tags: project/active --- # {{project_name}} ## Overview {{cursor}} ## Objectives - [ ] ## Requirements ## Timeline ## Resources ## Dependencies ## Risks ## Progress Tracking ## Notes ## Next Actions EOF # Research template cat > "$VAULT_PATH/08-Templates/Research.md" << 'EOF' --- # Research Metadata created: {{date}} research_type: status: exploring tags: research/active --- # {{research_topic}} ## Research Question {{cursor}} ## Background ## Methodology ## Findings ## Analysis ## Conclusions ## Sources ## Next Steps ## Related Research EOF # Create MOC (Map of Content) template cat > "$VAULT_PATH/08-Templates/MOC.md" << 'EOF' --- # MOC Metadata created: {{date}} moc_type: topic tags: moc/active --- # MOC: {{topic}} ## Core Concepts ## Key Relationships ## Learning Path ## Resources ## Related MOCs --- *Last Updated: {{date}}* EOF # Create core concept notes echo "🧠 Creating core concept notes..." # Welcome note cat > "$VAULT_PATH/00-Core/Welcome to Your Second Brain.md" << 'EOF' # Welcome to Your Elite Second Brain This is the central hub of your knowledge management system. This vault is structured for optimal RAG (Retrieval-Augmented Generation) workflows with Claude Code integration. ## Core Philosophy - **Knowledge as a Graph**: Everything connects to everything else - **Context is King**: Information without context is just data - **Continuous Learning**: Every interaction should expand understanding - **AI-Paired Thinking**: Use Claude as a cognitive enhancement tool ## Quick Start Guide ### 1. Daily Workflow 1. Start with `04-AI-Paired/Daily Plan - {{date}}` 2. Review `06-Meta/Weekly Review` notes 3. Work on active projects in `01-Projects/` 4. Capture insights in `04-AI-Paired/` 5. End with daily review and planning ### 2. Knowledge Capture - Use templates from `08-Templates/` - Link liberally - create connections - Tag consistently for better retrieval - Review and refine regularly ### 3. AI Integration - Use Claude Code for complex analysis - Create AI-paired notes for discussions - Automate repetitive knowledge tasks - Continuously improve the system ## Vault Structure - **00-Core/**: Foundational knowledge and principles - **01-Projects/**: Active work and initiatives - **02-Research/**: Learning and exploration - **03-Workflows/**: Reusable processes - **04-AI-Paired/**: Claude Code interactions - **05-Resources/**: External references - **06-Meta/**: Knowledge about the system - **07-Archive/**: Historical knowledge - **08-Templates/**: Reusable structures - **09-Links/**: External connections ## Getting Help - Check the `docs/` folder for detailed guides - Use `?` prefix for questions you want Claude to answer - Use `+` prefix for insights and connections - Use `!` prefix for action items Happy knowledge building! 🧠✨ EOF # RAG System Overview cat > "$VAULT_PATH/00-Core/RAG System Overview.md" << 'EOF' # RAG System Overview ## What is RAG? Retrieval-Augmented Generation (RAG) is a method that enhances AI responses by retrieving relevant information from a knowledge base before generating responses. ## Our Elite RAG Implementation ### 5-Layer Retrieval System 1. **Semantic Context**: Vector similarity search 2. **Graph Traversal**: Link-based knowledge expansion 3. **Temporal Context**: Time-based relevance 4. **Domain Specialization**: Context-aware retrieval 5. **Meta-Knowledge**: Knowledge about knowledge ### Integration with Claude Code - **Knowledge Ingestion**: Automatic processing of new notes - **Context Enhancement**: AI-powered metadata and connections - **Smart Retrieval**: Context-aware information access - **Continuous Learning**: System improves with use ## Usage Patterns ### For Development ```bash claude-code --with-vault-context --project "Current Project" "How should I implement X?" ``` ### For Research ```bash claude-research --topic "Your Research Question" --depth 3 ``` ### For Learning ```bash claude-learn --concept "Topic to Learn" --current-level "beginner" ``` ## Best Practices 1. **Consistent Tagging**: Use the hierarchical tag system 2. **Rich Linking**: Create dense connection networks 3. **Regular Reviews**: Keep knowledge fresh and relevant 4. **Context Capture**: Always note the context of information 5. **AI Integration**: Use Claude for synthesis and analysis ## Performance Metrics - Retrieval Speed: <100ms - Knowledge Coverage: 95%+ - Context Quality: Multi-layered - Automation Coverage: 80%+ EOF # Create initial MOCs echo "🗺️ Creating initial Maps of Content..." cat > "$VAULT_PATH/00-Core/MOC - Knowledge Management.md" << 'EOF' # MOC: Knowledge Management ## Core Concepts - [[RAG System Overview]] - [[Knowledge Architecture]] - [[Second Brain Principles]] - [[Note-Taking Strategies]] ## Systems and Workflows - [[Daily Knowledge Workflow]] - [[Weekly Review Process]] - [[Project Knowledge Integration]] - [[Learning Workflow]] ## Tools and Techniques - [[Obsidian Features]] - [[Claude Code Integration]] - [[Automation Framework]] - [[Tagging System]] ## Templates and Structures - [[Note Templates]] - [[Project Templates]] - [[Research Templates]] - [[MOC Templates]] ## Related MOCs - [[MOC: Productivity]] - [[MOC: Learning]] - [[MOC: AI Integration]] EOF cat > "$VAULT_PATH/00-Core/MOC - AI Integration.md" << 'EOF' # MOC: AI Integration ## Core Concepts - [[RAG System Overview]] - [[Claude Code Integration]] - [[Context Management]] - [[AI-Paired Thinking]] ## Integration Patterns - [[Knowledge-Paired Development]] - [[AI-Assisted Research]] - [[Automated Learning]] - [[Intelligent Context]] ## Automation Workflows - [[Knowledge Processing]] - [[Content Enhancement]] - [[Link Discovery]] - [[Context Prediction]] ## Advanced Features - [[Multi-Modal Processing]] - [[Knowledge Synthesis]] - [[Predictive Assistance]] - [[Performance Optimization]] ## Related MOCs - [[MOC: Knowledge Management]] - [[MOC: Productivity]] - [[MOC: Automation]] EOF # Create daily workflow template cat > "$VAULT_PATH/03-Workflows/Daily Knowledge Workflow.md" << 'EOF' # Daily Knowledge Workflow ## Morning Setup (5 minutes) ### 1. Review Yesterday's Insights - Open yesterday's AI-Paired notes - Review key insights and connections - Update any action items ### 2. Set Daily Context - Create `04-AI-Paired/Daily Plan - YYYY-MM-DD` - Define 1-3 key focus areas - Load relevant project context ## Throughout the Day ### 3. Knowledge Capture - Quick capture in `04-AI-Paired/Quick Capture` - Use appropriate templates for structured notes - Link to existing knowledge where possible ### 4. AI Integration - Use Claude Code for complex problems - Create AI-Paired notes for important discussions - Let AI suggest connections and insights ### 5. Context Switching - Before new tasks, load relevant context - Use RAG system to gather background info - Note context for future reference ## Evening Review (10 minutes) ### 6. Daily Synthesis - Review all notes created today - Identify key insights and patterns - Create `04-AI-Paired/Daily Synthesis - YYYY-MM-DD` ### 7. Connection Building - Look for new connections between today's notes - Update MOCs with new information - Schedule follow-up actions ### 8. Tomorrow Planning - Set priorities for tomorrow - Pre-load context for key tasks - Note questions for AI assistance ## Weekly Integration (30 minutes) ### 9. Weekly Review - Review all daily syntheses - Identify learning patterns - Update knowledge graph - Plan next week's focus areas ## Automation Opportunities - Automated daily note creation - Context prediction for tasks - Smart reminder system - Knowledge gap identification EOF # Create Claude integration script echo "🤖 Creating Claude integration scripts..." cat > "$VAULT_PATH/scripts/claude-context.sh" << 'EOF' #!/bin/bash # Claude Code with Obsidian Context # Provides rich context from your vault to Claude VAULT_PATH="$1" QUERY="$2" PROJECT="${3:-}" DOMAIN="${4:-general}" if [ -z "$VAULT_PATH" ] || [ -z "$QUERY" ]; then echo "Usage: $0 <vault-path> <query> [project] [domain]" exit 1 fi # Get relevant context from vault python3 "$(dirname "$0")/get-context.py" "$VAULT_PATH" "$QUERY" "$PROJECT" "$DOMAIN" > /tmp/claude-context.txt # Run Claude with context claude-code --context-file /tmp/claude-context.txt "$QUERY" # Clean up rm /tmp/claude-context.txt EOF chmod +x "$VAULT_PATH/scripts/claude-context.sh" # Create Python context retriever cat > "$VAULT_PATH/scripts/get-context.py" << 'EOF' #!/usr/bin/env python3 import sys import os import json from pathlib import Path def get_relevant_notes(vault_path, query, project=None, domain=None): """Get relevant notes from vault based on query""" vault = Path(vault_path) # Simple keyword-based retrieval (replace with RAG system) relevant_notes = [] query_words = query.lower().split() for md_file in vault.rglob("*.md"): if md_file.is_file(): try: content = md_file.read_text(encoding='utf-8').lower() # Simple relevance scoring score = 0 for word in query_words: score += content.count(word) if score > 0: relevant_notes.append({ 'path': str(md_file), 'score': score, 'content': content[:500] + "..." if len(content) > 500 else content }) except Exception as e: continue # Sort by relevance relevant_notes.sort(key=lambda x: x['score'], reverse=True) return relevant_notes[:5] # Top 5 notes def main(): if len(sys.argv) < 3: print("Usage: python get-context.py <vault-path> <query> [project] [domain]") sys.exit(1) vault_path = sys.argv[1] query = sys.argv[2] project = sys.argv[3] if len(sys.argv) > 3 else None domain = sys.argv[4] if len(sys.argv) > 4 else None # Get relevant notes notes = get_relevant_notes(vault_path, query, project, domain) # Generate context context = f"Query: {query}\n" if project: context += f"Project Context: {project}\n" if domain: context += f"Domain: {domain}\n" context += "\nRelevant Knowledge:\n\n" for note in notes: context += f"From: {note['path']}\n" context += f"Relevance: {note['score']}\n" context += f"Content: {note['content']}\n\n" print(context) if __name__ == "__main__": main() EOF chmod +x "$VAULT_PATH/scripts/get-context.py" # Create .gitignore cat > "$VAULT_PATH/.gitignore" << 'EOF' # Obsidian .obsidian/workspace .obsidian/graph.json .obsidian/cache # System .DS_Store Thumbs.db # Temporary files *.tmp *.temp */temp/ # Logs logs/ *.log # AI-generated content (optional - comment out if you want to track) # 04-AI-Paired/ EOF echo "✅ Elite RAG Vault setup complete!" echo "" echo "🎯 Next steps:" echo "1. Open the vault in Obsidian" echo "2. Review the core concepts in 00-Core/" echo "3. Customize templates in 08-Templates/" echo "4. Set up Claude Code integration" echo "5. Start with the daily workflow" echo "" echo "📚 Check the docs/ folder for detailed guides"

Latest Blog Posts

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/aegntic/aegntic-MCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server