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.

15 lines 367 B
/** * Resources module exports */ export * from './types.js'; export * from './tags.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) { return new TagResource(client); } //# sourceMappingURL=index.js.map