Skip to content

Obsidian

Clip the page you’re on straight into your local Obsidian vault, through the Local REST API community plugin. This is the strongest local-first path there is: page → local vault, with no cloud service anywhere in the middle. Nothing leaves your machine.

Appends to a note, creates a note, reads a note, and searches the vault. Append and Create can attach the page URL as a Markdown source link — pair it with page-extraction nodes to clip web content into your notes.

OperationNotes
Append to noteAdd content to the end of a note (creates it if missing).
Create noteCreate or replace a note at a path.
Get noteRead a note’s Markdown.
Search vaultFull-text search across the vault.
SettingNotes
CredentialThe plugin’s API key (see below).
OperationWhat to do in the vault.
Server URLDefaults to http://127.0.0.1:27123. Prefer the HTTP port — see the note below.
Note pathPath within the vault, including .md (e.g. Clippings/Web.md).
ContentMarkdown to write (the page text, a selection, or workflow output).
Source URLAttached as a [Source](…) link when present (Append / Create).
QueryText to search for (Search).
  1. In Obsidian, install and enable the Local REST API community plugin.
  2. Copy the API key from the plugin’s settings and save it as a Bearer Token credential here.
  3. Leave the Server URL at http://127.0.0.1:27123 unless you changed the port.

The plugin exposes an HTTPS port (27124) with a self-signed certificate and an HTTP port (27123). A self-signed cert makes fetch fail without manual browser intervention, so this node defaults to and recommends the HTTP port — safe here because the connection never leaves 127.0.0.1.

This node is extension-only. It talks to software running on your own machine (http://127.0.0.1), which is already covered by the extension’s host permissions — no new permission and no cloud round-trip.

  • “Could not reach the Obsidian Local REST API…” — Obsidian isn’t running, the Local REST API plugin is disabled, or the port doesn’t match. Open Obsidian, enable the plugin, and confirm the Server URL matches the plugin’s HTTP port.
  • 401 — the API key is wrong. Recopy it from the plugin settings into the credential.
  • 404 on Get/Append — check the Note path (including the .md extension and any folders).