marginalia
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@marginaliaRender this Markdown as a threaded comment page"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
marginalia
Turn any Markdown into a browser-based, click-to-comment thread over MCP. Comments
record as clean, anchored MCP tool_results; replies render as in-page,
re-annotatable cards. One portable FastMCP-over-stdio server, launched with uvx,
installs identically across Claude Code, Cline, and opencode.
See USAGE.md for the tool loop and environment variables.
Install
marginalia runs via uvx straight from git — no clone, no PyPI release needed.
The snippets below pin the latest release tag, @v2.1.0. To track unreleased
changes instead, swap the tag for @main.
Warm the cache once: the first
uvx --from git+…resolve can take long enough that a client drops the server on first launch. Run the bare command once in a terminal to populate the uvx cache, then start your client.marginaliais a stdio MCP server (no--help), so redirect stdin from/dev/nullto make it exit immediately once the cache is warm:uvx --from git+https://github.com/Jin-HoMLee/marginalia@v2.1.0 marginalia </dev/null
Claude Code
claude mcp add --scope user marginalia -- uvx --from git+https://github.com/Jin-HoMLee/marginalia@v2.1.0 marginaliaOptional (for CC's lazy-loaded skill UX): copy USAGE.md to
~/.claude/skills/marginalia/SKILL.md and prepend a two-line frontmatter
(name: marginalia / description: …). The repo ships no maintained SKILL.md.
Cline (cline_mcp_settings.json)
{
"mcpServers": {
"marginalia": {
"command": "uvx",
"args": ["--from", "git+https://github.com/Jin-HoMLee/marginalia@v2.1.0", "marginalia"],
"env": { "MARGINALIA_POLL_S": "540" },
"timeout": 3600
}
}
}MARGINALIA_POLL_S is optional here — 540 is already the default, so the env
block can be dropped entirely. It's shown only to make the long-poll window explicit.
If Cline is launched from the VS Code GUI and can't find uvx on PATH, use the
absolute path to uvx (e.g. ~/.local/bin/uvx) as command.
opencode (opencode.json)
{
"mcp": {
"marginalia": {
"type": "local",
"command": ["uvx", "--from", "git+https://github.com/Jin-HoMLee/marginalia@v2.1.0", "marginalia"],
"environment": { "MARGINALIA_POLL_S": "20" },
"enabled": true
}
}
}MARGINALIA_POLL_S=20 is required — opencode caps MCP tool execution at ~30s, so the
default 540s long-poll would be killed.
Related MCP server: claude-annotate
Develop
git clone https://github.com/Jin-HoMLee/marginalia && cd marginalia
python3 -m venv .venv && . .venv/bin/activate
pip install -e ".[dev]"
pytest # 44 testsLicense
MIT — see LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityAmaintenanceMarkdown collaboration for AI workflows. Share markdown via public links with four permission levels, inline comments, and real-time sync. AI agents can read docs, review comments, incorporate feedback, and resolve threads. Free, no login.Last updated14196MIT
- Alicense-qualityBmaintenanceEnables visual annotation on web pages for Claude Code, allowing element selection, comment addition, screenshot capture, and structured UI feedback for code fixes via an MCP server.Last updatedMIT
- Alicense-qualityBmaintenanceEnables sharing Markdown documents for collaborative review with inline annotations and structured change requests.Last updated19MIT
- Flicense-qualityAmaintenanceEnables UI feedback loop by clicking elements, leaving comments, and letting AI coding agents (via MCP) resolve annotations interactively.Last updated2
Related MCP Connectors
Human feedback for AI agents: share HTML, get a live review link, read anchored notes as markdown.
Converts any URL to clean, LLM-ready Markdown using real Chrome browsers
Render HTML, Markdown, or URLs to images, PDF, or branded artifacts; extract and watch pages.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Jin-HoMLee/marginalia'
If you have feedback or need assistance with the MCP directory API, please join our Discord server