UNPKG

obsidian-mcp-server

Version:

Model Context Protocol (MCP) server designed for LLMs to interact with Obsidian vaults. Provides secure, token-aware tools for seamless knowledge base management through a standardized interface.

19 lines 551 B
/** * Properties module exports */ export * from './types.js'; export * from './manager.js'; export * from './tools.js'; import { GetPropertiesToolHandler, UpdatePropertiesToolHandler } from './tools.js'; /** * Create all property-related tool handlers * @param client The ObsidianClient instance * @returns Array of property tool handlers */ export function createPropertyToolHandlers(client) { return [ new GetPropertiesToolHandler(client), new UpdatePropertiesToolHandler(client) ]; } //# sourceMappingURL=index.js.map