From 4be35613a62dc20956c5c89c21559b7cbb9dd5dd Mon Sep 17 00:00:00 2001 From: Defame1297 Date: Sat, 27 Jun 2026 13:53:12 +0000 Subject: [PATCH] chore(config): add Obsidian MCP server and bin plugin ## Why The Obsidian MCP server (mcpvault) wasn't wired up in this repo's local config, making obsidian tools unavailable. The bin@holocron plugin was added to settings but not yet listed in the allowed plugins. ## Impact - Obsidian MCP tools are now available when working in this repo - bin@holocron plugin is enabled in .claude/settings.json Co-authored-by: Claude Sonnet 4.6 --- .claude/settings.json | 3 ++- .mcp.json | 12 ++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 .mcp.json diff --git a/.claude/settings.json b/.claude/settings.json index 6683e90..a155622 100644 --- a/.claude/settings.json +++ b/.claude/settings.json @@ -3,6 +3,7 @@ "PreToolUse": [] }, "enabledPlugins": { - "kyberforge@holocron": true + "kyberforge@holocron": true, + "bin@holocron": true } } diff --git a/.mcp.json b/.mcp.json new file mode 100644 index 0000000..6e11959 --- /dev/null +++ b/.mcp.json @@ -0,0 +1,12 @@ +{ + "mcpServers": { + "obsidian": { + "type": "stdio", + "command": "npx", + "args": [ + "@bitbonsai/mcpvault@latest", + "docs/" + ] + } + } +} \ No newline at end of file