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.
17 lines (15 loc) • 418 B
text/typescript
/**
* Resources module exports
*/
export * from './types.js';
export * from './tags.js';
import { ObsidianClient } from '../obsidian/client.js';
import { TagResource } from './tags.js';
/**
* Create and return the tag resource
* @param client The ObsidianClient instance
* @returns The tag resource
*/
export function createTagResource(client: ObsidianClient): TagResource {
return new TagResource(client);
}