Featured

Deploy OpenClaw in 60 seconds β€” 20% off logoDeploy OpenClaw in 60 seconds β€” 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger β†’
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger β†’
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free β†’
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free β†’
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data β€” no proxies, no parsers, no maintenance.

Start building free β†’
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it β€” secured from day one.

Get it set up for you β†’
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free β†’
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here β†’

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

juergenkoller-software/inkra-mcp MCP server](https://glama.ai/mcp/servers/juergenkoller-software/inkra-mcp/badges/score.svg)](https://glama.ai/mcp/servers/juergenkoller-software/inkra-mcp) 🏠 🍎 - MCP bridge for Inkra β€” native macOS Markdown editor...

README.md

Inkra MCP Server

![Swift](https://swift.org) ![Platform](https://apple.com/macos) ![License](LICENSE) ![MCP](https://modelcontextprotocol.io) ![juergenkoller-software/inkra-mcp MCP server](https://glama.ai/mcp/servers/juergenkoller-software/inkra-mcp)

Drive a native macOS Markdown editor from Claude, Cursor, or any MCP client.

This is the official Model Context Protocol bridge for Inkra β€” a native macOS Markdown editor (SwiftUI + AppKit, not Electron) with live KaTeX/Mermaid preview and a built-in AI assistant.

You need the Inkra app installed and running. This MCP server is a stdio→HTTP bridge — Inkra owns the document state, undo stack, syntax highlighting, and rendering. Get Inkra at store.juergenkoller.software/apps/inkra.

---

What you can do

"Claude, open ~/Notes/2026-thesis.md, find every heading that contains 'TODO', add a checkbox after it, and save." "Cursor, list all files in the current folder, bookmark the H2 'Methodology', and switch to Focus Mode."

The MCP server exposes 18 tools across these categories:

| Category | Tools | |---|---| | Document content | document_get_content, document_set_content, document_insert, document_replace, document_search | | Document lifecycle | document_open, document_create, document_save | | Navigation | outline_get, bookmarks_list, bookmark_add, bookmark_remove | | Folder / files | folder_open, folder_list_files | | Metadata | frontmatter_get (YAML front-matter parser) | | View | theme_set (standard / sepia / night), view_mode_set (focus / wide) | | State | window_info |

Every tool operates on the currently open document in the Inkra app β€” so AI agents see exactly what you see, edits show up live with syntax highlighting and preview, and undo/redo work in the app's normal undo stack.

---

Installation

Prerequisites

  1. macOS 14 (Sonoma) or later
  2. Inkra app installed and running β€” get it here (free during beta, available on Mac App Store and direct download)
  3. Swift 5.9+ (Xcode 15+) if building from source

Build from source

git clone https://github.com/juergenkoller-software/inkra-mcp.git
cd inkra-mcp
swift build -c release
# Binary: .build/release/InkraMCP

Pre-built binary

See Releases.

---

Configuration

Claude Desktop

{
  "mcpServers": {
    "inkra": {
      "command": "/path/to/InkraMCP",
      "env": {
        "INKRA_PORT": "22300",
        "INKRA_TOKEN": "your-token-here"
      }
    }
  }
}

Get INKRA_TOKEN from Inkra β†’ Settings β†’ API & Integrations.

Claude Code

claude mcp add inkra /path/to/InkraMCP \
  --env INKRA_PORT=22300 \
  --env INKRA_TOKEN=your-token-here

Cursor / other MCP clients

Same pattern β€” stdio MCP server, two env vars.

---

How it works

β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”  JSON-RPC stdio   β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”  HTTP+Bearer   β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚  Claude/Cursor β”‚ ───────────────►  β”‚  InkraMCP      β”‚ ─────────────► β”‚  Inkra.app     β”‚
β”‚  (MCP client)  β”‚ ◄───────────────  β”‚   (this repo)  β”‚ ◄───────────── β”‚  (port 22300)  β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜                   β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜                β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

The bridge forwards JSON-RPC over stdio to Inkra's local HTTP MCP endpoint. The app handles document state (NSTextView with TextKit 2), AST-based syntax highlighting, KaTeX/Mermaid live preview, undo/redo, session restore, and exports.

---

Environment variables

| Variable | Default | Description | |---|---|---| | INKRA_PORT | 22300 | Port of Inkra's local HTTP server | | INKRA_TOKEN | _(none)_ | Bearer token from Inkra Settings (required) |

---

About Inkra

Inkra is a native macOS Markdown editor β€” not an Electron app. Highlights:

  • Native β€” SwiftUI + AppKit, real macOS performance
  • Live preview β€” KaTeX formulas, Mermaid diagrams, code highlighting rendered in real time via WKWebView
  • Focus mode + wide mode β€” distraction-free writing
  • Built-in AI assistant β€” Claude, OpenAI, Ollama, or Inkra KI (dedicated endpoint, no API key needed)
  • Export β€” HTML and PDF with full layout, formulas, diagrams, code blocks
  • Session restore β€” folder, file, cursor, scroll position
  • MCP server (this repo) + REST API with Swagger UI
  • 23 EU language localizations
  • Available on Mac App Store + direct download

β†’ Get Inkra at store.juergenkoller.software

---

License

MIT β€” see LICENSE. Bridge open source; Inkra app is commercial.

Issues & support

Built by Juergen Koller Software GmbH.

See related servers & alternatives β†’

Related MCP servers

Browse all β†’

Related guides

Hand-picked reading to help you choose and use Files & Docs servers.