Inline comments and GitHub-style suggested edits for Obsidian, stored in note frontmatter. Readable by agents over CLI and MCP.
- ✓Open-source license (MIT)
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Topics declared
- ✓Documented (README)
claude mcp add obelisk -- npx -y obelisk-mcp{
"mcpServers": {
"obelisk": {
"command": "npx",
"args": ["-y", "obelisk-mcp"]
}
}
}MCP Servers overview
# Obelisk
Inline comments and GitHub-style suggested edits for [Obsidian](https://obsidian.md).
Select a passage, leave a comment on it, and optionally propose a replacement
that can be applied with one click. Comments are stored in the note's own
frontmatter, so they travel with the file through sync, git, export and
rename.
> An *obelus* (†) was the mark ancient editors drew in the margin of a
> manuscript to say: this passage is disputed.
## Status
Pre-release. Anchoring, decoration, the sidebar, suggested edits and the agent
integration are implemented. The CLI and the MCP server are on npm as
`obelisk-mcp`; the plugin has not been submitted to the community plugin list,
and none of it has been exercised against a large vault.
## Features
- **Comment on any passage.** Select text, right-click, *Add comment*.
- **Markdown everywhere.** Comments and replies are ordinary markdown, with a
Write/Preview pair while you type. Links, lists, callouts, embeds and math
render in the sidebar exactly as they would in a note.
- **Suggested edits.** A proposal is a fenced ` ```suggestion ` block *inside*
the comment, the way GitHub does it. It renders as a diff against the quoted
passage with an Apply button, so one comment can explain itself and propose a
change, and a reply can offer a counter-proposal. Applying is refused if the
underlying text has changed since. It also resolves the comment, and *Reopen*
is there if the comment asked something the edit did not answer.
- **Sidebar.** All of a note's comments in document order, or newest first from
the sort toggle. Click one to scroll the editor to it. Chips filter to open
comments, to comments carrying a suggestion, or to one agent's review pass.
Resolved comments stay in the list, greyed rather than hidden, since they are
still highlighted in the note.
- **In-text highlighting.** Commented passages are highlighted, with a †
marker that opens the comment in the sidebar.
- **Stored in frontmatter.** Plain YAML under an `obelisk` key. Readable,
diffable, portable.
- **Survives editing.** A comment is anchored to the text it quotes, so it
keeps up with edits anywhere else in the note, including ones made outside
Obsidian. Edit or delete the quoted passage itself and the comment detaches:
flagged in the sidebar, highlighting nothing, never moved onto a different
passage and never dropped. Restore the text and it reattaches. Resolved
comments are exempt from the flag, because a resolved comment usually
detaches when the edit it asked for is made.
- **The editor you already use.** Comments are written in Obsidian's own
markdown editor, so Cmd+B, list continuation, `[[` autocompletion and live
preview work in a comment exactly as they do in a note.
- **Threaded replies.** On any comment, stored alongside it, and markdown all
the way down.
- **Editable.** Rewrite a comment or a reply in the same composer that wrote
it, suggestion button and all, from the card's *Edit* button or by
right-clicking the passage. Edited bodies are marked as such. The anchor is
left alone, so changing what you said never changes what you said it about.
- **Deletable.** A whole comment from the card's *Delete*, or a single reply
from the trash icon in its header, so striking one remark out of a thread
does not take the conversation with it. Both offer an undo rather than a
confirmation dialog.
- **Open to agents.** A command-line tool and an MCP server can read and write
the same comments from outside Obsidian, so a model can review a note into
your sidebar, or answer the comments you left for it. Its comments are
badged, and a whole review pass is one chip in the header with a *dismiss
all* on it. See below.
## Data format
```yaml
---
obelisk:
- id: cq7fk2m9x
author: zach
created: 2026-08-29T14:02:11.000Z
body: |-
This paragraph does two things at once.
```suggestion
The horse bolted.
```
anchor:
from: { line: 12, col: 0 }
to: { line: 12, col: 47 }
quote: The horse, which had been standing there, bolted.
---
```
A comment is one piece of markdown. A proposed edit is a ` ```suggestion `
fenced block inside it, whose content replaces exactly the anchored range when
applied, so one comment can hold prose, a link and a proposal at once.
The `quote` is what a comment is anchored by. The line/column range records
where the passage was when the comment was written. It orders the sidebar and
breaks ties when a quote appears twice, and is never rewritten. Lines are
counted from the first line *after* the frontmatter block, so adding a comment
never invalidates the others.
A comment written by a model carries one more key, `origin`, holding the model
and an id shared by every comment in that review pass. Its absence means a
person wrote it, so nothing already in a vault needs migrating.
## Agents
The same comments, from outside Obsidian. A model reviews a note and its
remarks appear in the sidebar of the note you already have open. Or you leave
comments asking for things and a model reads them, makes the edits, and
resolves them.
```bash
npm install -g obelisk-mcp # puts `obelisk` and `obelisk-mcp` on PATH
obelisk list note.md
obelisk comment note.md --quote "The horse, which had been standing there, bolted." \
--body "Two clauses fighting over one sentence." --run r7k2mq
```
For an agent that speaks MCP, register the server with it:
```bash
claude mcp add obelisk --scope user -- npx -y obelisk-mcp
```
One registration covers every vault: the tools work on whichever vault the
agent is running in, and an absolute path reaches a note in one it is not. The
server is listed in the official MCP registry as `io.github.zachhannum/obelisk`
for a client that installs from there.
**There is nothing to start.** It speaks MCP over stdio: the agent spawns a
process when a session opens and kills it when the session ends, so
`obelisk-mcp` is never run by hand and there is no port and no daemon. One
process per session is also what makes a session's comments share one run chip
in the sidebar. A session keeps the process it spawned, so a new version of the
package arrives at the next one. To take it sooner, reconnect from `/mcp`.
To check the registration, `claude mcp list`, or `/mcp` inside a session. To
check the server itself with no agent in the way:
```bash
printf '%s\n' \
'{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"smoke","version":"0"}}}' \
'{"jsonrpc":"2.0","method":"notifications/initialized"}' \
'{"jsonrpc":"2.0","id":2,"method":"tools/list"}' \
| npx -y obelisk-mcp
```
That should print the handshake and then the four tools. A server that fails
this fails the same way for an agent, which is worth knowing before you go
looking at the agent's end of it.
For an agent that does not speak MCP, paste
[`docs/agents-fragment.md`](docs/agents-fragment.md) into the vault's
`AGENTS.md` or `CLAUDE.md`.
The one rule worth knowing: **the quote is the anchor.** A line number is never
one. A model asked for a line will produce a plausible wrong number, and a
plausible wrong number attaches a comment to the wrong paragraph without ever
looking like an error, so `--near-line` only picks between identical quotes and
takes a number copied out of `obelisk list`. `--quote` has to appear in the
note character for character, and if it does not, or appears twice, nothing is
written and the reason is printed. `obelisk list` prints the body numbered so
the exact text is there to copy.
Writes are frontmatter-only and leave the body byte-identical, so they are safe
while the note is open in Obsidian. A write also re-reads the file first and
refuses if it changed underneath.
## Development
```bash
npm install
npm run dev # watch build, plugin only
npm run build # typecheck, then main.js plus dist/cli.mjs and dist/mcp.mjs
```
`src/core/` is the half that does not import Obsidian: the model, the anchor
arithmetic, the YAML and the four verbs. The plugin, the CLI and the MCP server
are three front ends over it.
`site/` is the documentation site, an Astro project of its own with its own
`npm install`. It is not part of `npm run build`.
Symlink the repo into a test vault to try it:
```bash
ln -s "$PWD" /path/to/vault/.obsidian/plugins/obelisk
```
## License
MIT
What people ask about obelisk
What is zachhannum/obelisk?
+
zachhannum/obelisk is mcp servers for the Claude AI ecosystem. Inline comments and GitHub-style suggested edits for Obsidian, stored in note frontmatter. Readable by agents over CLI and MCP. It has 0 GitHub stars and its last recorded update is dated 2026-09-03.
How do I install obelisk?
+
You can install obelisk by cloning the repository (https://github.com/zachhannum/obelisk) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.
Is zachhannum/obelisk safe to use?
+
Our security agent has analyzed zachhannum/obelisk and assigned a Trust Score of 95/100 (tier: Verified). See the full breakdown of passed checks and flags on this page.
Who maintains zachhannum/obelisk?
+
zachhannum/obelisk is maintained by zachhannum. The last recorded GitHub activity is dated 2026-09-03, with 4 open issues.
Are there alternatives to obelisk?
+
Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.
Deploy obelisk to your cloud
Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.
Maintain this repo? Add a badge to your README
Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.
[](https://claudewave.com/repo/zachhannum-obelisk)<a href="https://claudewave.com/repo/zachhannum-obelisk"><img src="https://claudewave.com/api/badge/zachhannum-obelisk" alt="Featured on ClaudeWave: zachhannum/obelisk" width="320" height="64" /></a>More MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
The fastest path to AI-powered full stack observability, even for lean teams.
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!