UNPKG

obsidian-mcp-server

Version:

Obsidian Knowledge-Management MCP (Model Context Protocol) server that enables AI agents and development tools to interact with an Obsidian vault. It provides a comprehensive suite of tools for reading, writing, searching, and managing notes, tags, and fr

14 lines (13 loc) 618 B
// Re-export all utilities from their categorized subdirectories export * from "./internal/index.js"; export * from "./parsing/index.js"; export * from "./security/index.js"; export * from "./metrics/index.js"; export * from "./obsidian/index.js"; // Added export for obsidian utils // It's good practice to have index.ts files in each subdirectory // that export the contents of that directory. // Assuming those will be created or already exist. // If not, this might need adjustment to export specific files, e.g.: // export * from './internal/errorHandler.js'; // export * from './internal/logger.js'; // ... etc.