We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jianruidutong/obsidian-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
deploy.sh•2.66 kB
#!/bin/bash
# Enhanced Obsidian MCP Server - GitHub Repository Setup Script
# This script helps you push the project to the jianruidutong/obsidian-mcp repository
echo "🚀 Enhanced Obsidian MCP Server - Repository Setup"
echo "=================================================="
# Check if git is installed
if ! command -v git &> /dev/null; then
echo "❌ Git is not installed. Please install Git first."
exit 1
fi
# Check if we're in the right directory
if [ ! -f "package.json" ]; then
echo "❌ Please run this script from the project root directory."
exit 1
fi
# Initialize git repository if not already initialized
if [ ! -d ".git" ]; then
echo "📦 Initializing Git repository..."
git init
fi
# Add all files
echo "📋 Adding files to Git..."
git add .
# Create initial commit
echo "💾 Creating initial commit..."
git commit -m "feat: Enhanced Obsidian MCP Server v2.0.0 with 25 AI tools
- 🧠 15 new AI-enhanced tools for intelligent content analysis
- 🔗 Smart auto-linking with advanced pattern recognition
- 📊 Knowledge graph generation for visualization
- 🏷️ Advanced tag management with intelligent suggestions
- 📝 Template system for consistent note creation
- 🔍 Content similarity analysis using TF-IDF and cosine similarity
- 📈 Relationship analysis for discovering hidden connections
Core Features:
- 10 enhanced note management tools
- 3 advanced tag management tools
- 4 template system tools
- 4 AI content analysis tools
- 4 knowledge graph & analytics tools
Breaking Changes:
- Updated to v2.0.0 with new package name @jianruidutong/obsidian-mcp
- Enhanced API with additional intelligent features
- Improved error handling and validation"
# Set up remote repository
echo "🔗 Setting up remote repository..."
git branch -M main
git remote add origin https://github.com/jianruidutong/obsidian-mcp.git
# Push to repository
echo "⬆️ Pushing to GitHub..."
echo "Note: You may need to authenticate with GitHub"
git push -u origin main
echo ""
echo "✅ Repository setup complete!"
echo ""
echo "📋 Next Steps:"
echo "1. Go to https://github.com/jianruidutong/obsidian-mcp"
echo "2. Verify all files are uploaded correctly"
echo "3. Update repository description and topics"
echo "4. Enable GitHub Pages if needed"
echo "5. Create releases and tags"
echo ""
echo "🔧 To install the package:"
echo "npm install -g @jianruidutong/obsidian-mcp"
echo ""
echo "📖 Documentation links:"
echo "- README.md: Main documentation"
echo "- README.zh.md: Chinese documentation"
echo "- INSTALLATION.md: Detailed installation guide"
echo "- CONTRIBUTING.md: Contribution guidelines"