Skip to main content
Glama

MCP Tools for Obsidian

index.ts712 B
import { Plugin } from "obsidian"; import type { SetupResult } from "./types"; export async function setup(plugin: Plugin): Promise<SetupResult> { try { return { success: true }; } catch (error) { return { success: false, error: error instanceof Error ? error.message : String(error), }; } } // Re-export types and utilities that should be available to other features export { default as FeatureSettings } from "./components/McpServerInstallSettings.svelte"; export * from "./constants"; export { updateClaudeConfig } from "./services/config"; export { installMcpServer } from "./services/install"; export { uninstallServer } from "./services/uninstall"; export * from "./types";

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/jacksteamdev/obsidian-mcp-tools'

If you have feedback or need assistance with the MCP directory API, please join our Discord server