obsidian_create
Create a plain Obsidian note with literal markdown content, avoiding Templater placeholder expansion. Specify name, path, and content for quick note creation.
Instructions
Create a new PLAIN note (no Templater expansion).
This wraps the CLI's create verb. It does NOT expand Templater placeholders
like <% tp.date.now() %> — if your template contains placeholders, use
obsidian_create_from_template instead, which routes to
templater:create-from-template.
Parameters: name (optional) — file name for the new note path (optional) — vault-relative path content (optional) — initial markdown content (literal, no placeholder expansion)
Examples: obsidian_create({ name: "Meeting 2026-04-03", content: "# Meeting Notes\n\n- Attendees: ..." }) obsidian_create({ path: "Projects/new-idea.md", content: "# New idea" })
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | File name | |
| path | No | File path | |
| content | No | Initial content (literal — Templater placeholders are NOT expanded; use obsidian_create_from_template for that) |