Skip to main content
Glama
rex

mcp-apple-obsidian

by rex

obsidian_update_task

Update a task's description, due date, or priority by locating it with its current description in an Obsidian note.

Instructions

Update a task's properties.

Args:
    vault: Name or path of the vault
    path: Path to the note within the vault
    task_description_contains: Text to match in current description
    new_description: New description text (optional)
    new_due_date: New due date (YYYY-MM-DD, or "remove" to clear)
    new_priority: New priority ("high", "normal", "low", or "remove")
    
Returns:
    Success message or error

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
vaultYes
pathYes
task_description_containsYes
new_descriptionNo
new_due_dateNo
new_priorityNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes
Behavior2/5

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

No annotations are provided, so the description must disclose all behavioral traits. It states that properties are updated and returns a success/error message, but it does not explain behavior if the task is not found, if multiple tasks match 'task_description_contains', or if some properties are omitted. The mutation is implied but side effects are not clarified.

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

Conciseness4/5

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

The description is concise, using a standard docstring format with 'Args:' and 'Returns:' sections. It is front-loaded with the purpose and lists parameters briefly. Every sentence is relevant, though some details (like exact return structure) are omitted.

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

Completeness2/5

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

With 6 parameters (3 required), no schema descriptions, and an output schema present but not explained, the description is incomplete. It does not specify what happens if 'task_description_contains' matches multiple tasks, or whether updates are atomic. The return value is vaguely described as 'Success message or error', lacking details on error conditions.

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?

The input schema has 0% description coverage, so the description must provide meaning. It lists parameters and adds semantic constraints: for 'new_due_date' it specifies format 'YYYY-MM-DD' and 'remove' to clear; for 'new_priority' it enumerates allowed values. However, it does not explain 'vault', 'path', or 'task_description_contains' beyond their names, leaving ambiguity.

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

Purpose4/5

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

The description clearly states 'Update a task's properties,' which is a specific verb+resource. It distinguishes from sibling tools like 'obsidian_complete_task' or 'obsidian_delete_task' by implying modification rather than completion or deletion. However, it could be more explicit about which type of tasks it updates (e.g., only existing tasks).

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

Usage Guidelines2/5

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

No guidance on when to use this tool versus alternatives like 'obsidian_complete_task' or 'obsidian_uncomplete_task'. The description does not mention prerequisites, such as requiring the task to exist, or when to prefer this over other task-related tools.

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

Install Server

Other Tools

Latest Blog Posts

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/rex/mcp-apple-obsidian'

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