Skip to main content
Glama
t-rhex

mcp-obsidian-vault

by t-rhex

get_context

Retrieve a structured briefing of an Obsidian vault's current state: active projects, tasks, blockers, failures, recent decisions, discoveries, and pinned notes. Call first in a new session.

Instructions

Get a structured briefing of the vault's current state. Returns active projects, in-progress work, pending tasks, blockers, failures, recent decisions, recent discoveries, and pinned notes. Call this FIRST in any new session to understand what's going on.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
hoursNoHow far back to look for recent activity (hours). Default: 48.
project_idNoFocus on a specific project. If omitted, shows all active work.
include_completedNoInclude recently completed tasks in the briefing. Default: true.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.4.0

TDQS

A4.3/5.0
Behavior4/5

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

With no annotations, the description carries the burden. It clearly communicates that this is a read-only aggregation via 'Get' and discloses the return content (active projects, blockers, decisions, etc.). It does not explicitly say 'does not modify state,' but the verb and return list make the behavioral profile sufficiently transparent.

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?

Three short sentences with no filler: what it returns, what content is included, and when to call it. The timing guidance is front-loaded after the purpose, and every sentence earns its place.

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

Completeness5/5

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

Given no output schema, the description still enumerates the returned briefing categories. All parameters are optional and fully explained in the schema. For an aggregation/overview tool, everything an agent needs to call it appropriately is present.

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

Parameters3/5

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

Schema description coverage is 100%, so the parameters (hours, project_id, include_completed) are fully documented in the schema. The description adds little parameter-specific meaning beyond 'recent activity,' matching the baseline for high schema coverage.

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?

States a specific verb and resource: 'Get a structured briefing of the vault's current state.' It enumerates the contents of the briefing, making it clearly distinct from narrower sibling tools like get_project_status or list_tasks.

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?

Gives explicit when-to-use guidance: 'Call this FIRST in any new session to understand what's going on.' It does not mention when to avoid it or name alternatives, but the context is clear.

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