Skip to main content
Glama
alex106

obsidian-secondbrain-mcp

by alex106

init_vault

Create the folder taxonomy and config file in an empty Obsidian vault, preserving any existing folders and notes.

Instructions

Create the folder taxonomy and config file in an empty or new vault.

Idempotent: existing folders and notes are left untouched.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
seed_readmeNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the behavioral disclosure burden. It meaningfully discloses that the operation is idempotent and that existing folders and notes are left untouched. It does not clarify config-file conflict behavior or what happens if the vault is not empty, but the core safety property is covered.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two short sentences with no filler. The main purpose is front-loaded, and the idempotence guarantee is stated separately and clearly.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers the core function and the most important behavioral trait for a low-complexity tool with one optional parameter. However, it omits the effect of seed_readme and gives no indication of what a successful initialization produces, which matters because there is no output schema.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The only parameter, seed_readme, is undocumented in the schema and receives no explanation in the description. The name hints at its purpose, but the agent gets no explicit information about what seeding a readme entails or how it affects the vault.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific action, 'Create the folder taxonomy and config file', and clearly scopes it to 'an empty or new vault'. This distinguishes it from note-level siblings like create_note and build_map without ambiguity.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description clearly scopes when the tool should be used: on an empty or new vault. It does not explicitly name alternatives or tell the agent what to do for existing vaults, but the idempotence note reinforces the intended setup context.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.