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.
21 lines (19 loc) • 582 B
text/typescript
/**
* Properties module exports
*/
export * from './types.js';
export * from './manager.js';
export * from './tools.js';
import { ObsidianClient } from '../../obsidian/client.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: ObsidianClient) {
return [
new GetPropertiesToolHandler(client),
new UpdatePropertiesToolHandler(client)
];
}