Skip to main content
ClaudeWave

Inline comments and GitHub-style suggested edits for Obsidian, stored in note frontmatter. Readable by agents over CLI and MCP.

MCP ServersRegistry oficial0 estrellas0 forksTypeScriptMITActualizado today
ClaudeWave Trust Score
95/100
Verified
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Documented (README)
Last scanned: 9/3/2026
Install in Claude Code / Claude Desktop
Method: NPX · obelisk-mcp
Claude Code CLI
claude mcp add obelisk -- npx -y obelisk-mcp
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "obelisk": {
      "command": "npx",
      "args": ["-y", "obelisk-mcp"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Casos de uso

Resumen de MCP Servers

# 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
obsidianobsidian-pluginwriting

Lo que la gente pregunta sobre obelisk

¿Qué es zachhannum/obelisk?

+

zachhannum/obelisk es mcp servers para el ecosistema de Claude AI. Inline comments and GitHub-style suggested edits for Obsidian, stored in note frontmatter. Readable by agents over CLI and MCP. Tiene 0 estrellas en GitHub y su última actualización registrada es del 2026-09-03.

¿Cómo se instala obelisk?

+

Puedes instalar obelisk clonando el repositorio (https://github.com/zachhannum/obelisk) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.

¿Es seguro usar zachhannum/obelisk?

+

Nuestro agente de seguridad ha analizado zachhannum/obelisk y le ha asignado un Trust Score de 95/100 (tier: Verified). Revisa el desglose completo de comprobaciones superadas y flags en esta página.

¿Quién mantiene zachhannum/obelisk?

+

zachhannum/obelisk es mantenido por zachhannum. La última actividad registrada en GitHub es del 2026-09-03, con 4 issues abiertos.

¿Hay alternativas a obelisk?

+

Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.

Despliega obelisk en tu cloud

Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.

¿Mantienes este repo? Añade un badge a tu README

Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.

Featured on ClaudeWave: zachhannum/obelisk
[![Featured on ClaudeWave](https://claudewave.com/api/badge/zachhannum-obelisk)](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>

Más MCP Servers

Alternativas a obelisk