Skip to main content
Glama
MarkusPfundstein

MCP server for Obsidian

obsidian_append_content

Add content to Obsidian notes by appending text to new or existing files in your vault. This tool integrates with Obsidian's Local REST API to modify note files programmatically.

Instructions

Append content to a new or existing file in the vault.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
filepathYesPath to the file (relative to vault root)
contentYesContent to append to the file

Implementation Reference

  • The run_tool method implements the core logic of the obsidian_append_content tool: validates arguments, calls the Obsidian API to append content, and returns a success message.
    def run_tool(self, args: dict) -> Sequence[TextContent | ImageContent | EmbeddedResource]:
        if "filepath" not in args or "content" not in args:
            raise RuntimeError("filepath and content arguments required")
    
        api = obsidian.Obsidian(api_key=api_key, host=obsidian_host)
        api.append_content(args.get("filepath", ""), args["content"])
    
        return [
            TextContent(
                type="text",
                text=f"Successfully appended content to {args['filepath']}"
            )
        ]
  • Defines the input schema and description for the obsidian_append_content tool.
    return Tool(
        name=self.name,
        description="Append content to a new or existing file in the vault.",
        inputSchema={
            "type": "object",
            "properties": {
                "filepath": {
                    "type": "string",
                    "description": "Path to the file (relative to vault root)",
                    "format": "path"
                },
                "content": {
                    "type": "string",
                    "description": "Content to append to the file"
                }
            },
            "required": ["filepath", "content"]
        }
    )
  • Registers the AppendContentToolHandler instance with the MCP server.
    add_tool_handler(tools.AppendContentToolHandler())
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It states the tool appends content to files, implying a write operation, but doesn't clarify critical aspects like whether it creates files if they don't exist, how it handles existing content (e.g., appending at end vs. specific position), error conditions, or any rate limits. This leaves significant gaps for a mutation tool.

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?

The description is a single, efficient sentence that directly states the tool's purpose without unnecessary words. It's front-loaded with the core action and resource, making it easy to parse quickly. Every word earns its place.

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?

For a mutation tool with no annotations and no output schema, the description is incomplete. It lacks details on behavioral traits (e.g., file creation, append behavior), error handling, and return values. Given the complexity of file operations and the absence of structured safety hints, more context is needed to adequately guide an agent.

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%, with both parameters ('filepath' and 'content') well-documented in the schema. The description doesn't add any meaningful parameter semantics beyond what the schema already provides, such as explaining 'filepath' format examples or 'content' handling. Baseline 3 is appropriate given the schema does the heavy lifting.

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 the action ('Append content') and target ('to a new or existing file in the vault'), providing a specific verb+resource combination. However, it doesn't explicitly distinguish this tool from similar siblings like 'obsidian_patch_content' or 'obsidian_put_content', which might also modify file content in different ways.

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?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention when to choose 'append' over 'patch' or 'put' content, nor does it specify prerequisites like file existence or permissions. Usage is implied but not explicitly defined.

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

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