We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/claudiogarza/obsidian-rag-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
run-server.sh•367 B
#!/bin/bash
# MCP Server launcher for Claude Code integration
cd "$(dirname "$0")"
source .venv/bin/activate
# Load environment
if [ -f .env ]; then
export $(cat .env | grep -v '^#' | xargs)
fi
# Default vault path if not set
export OBSIDIAN_VAULT_PATH="${OBSIDIAN_VAULT_PATH:-./vault}"
export PYTHONPATH="${PYTHONPATH:-.}"
exec python -m src.mcp.server "$@"