jarbobo

jarbobo

Enables LLMs to draw interactive diagrams (architecture, sequence, class) inside the editor, with clickable nodes that jump to source code.

Category
访问服务器

README

Tired of badly formatted markdown? Give your LLM a canvas. 🎨

jarbobo lets Claude (or any MCP client) draw real, interactive diagrams inside your editor — not ASCII art, not a mermaid string it hallucinated half the syntax for, not a PNG in another tab.

Graphs, UML sequence diagrams, and class diagrams that live in Cursor as first-class tabs, where every node is a live pointer into your code: hover it for the gist, click it and your editor jumps to the exact file:line.

jarbobo demo — click to watch the full video

Above: exploring pybind11's internals — click the image to watch the full demo (0:14). The diagram was drawn by Claude via MCP; clicking struct internals focuses internals.h:302 in the editor.


Why this exists

LLMs are great at explaining systems and terrible at showing them. Markdown gives them bullet points; mermaid gives them a syntax to typo. jarbobo gives them a canvas with an interactivity contract:

The LLM sets… You get…
tooltip hover text on any node, edge, message, or class
detail click → side panel with the full explanation (lockable 🔒, click-outside to close)
file + line click → your editor opens that source line (⌘-click skips the detail panel and jumps straight there; hold ⌃ while hovering to highlight the reference)
href click → docs / PR / dashboard

Plus the viewer mechanics you'd expect from a real tool:

  • 🗂 one tab per diagram — compare views side by side, tear a tab out into its own window
  • 🔍 pan & zoom — right-drag pans, scroll pans, ⇧-scroll pans horizontally, ⌘-scroll zooms
  • 🧲 persistent layouts — drag nodes around; the arrangement survives close & reopen
  • 🎯 ref-target toggle — open clicked references in the main code window or next to the diagram
  • 📊 status barjarbobo: idle / jarbobo: 3 diagrams, click for history

The three tools

  • draw_graph — architecture, dataflow, call graphs, state machines. Layered/force/grid/circle layouts, shapes (box, ellipse, diamond, hexagon, cylinder), labelled group containers for boundaries ("CPython interpreter" vs "your .so"), styled edges (solid/dashed/dotted, colors).
  • draw_sequence_diagram — UML sequence: box/actor/database participants, sync/async/reply/self messages with automatic activation bars, side notes, and loop / alt / opt / par frames.
  • draw_class_diagram — UML classes: «stereotypes», attributes & methods with + - # ~ visibility, and honest UML relations — inheritance ▷, implements ⇢▷, composition ◆, aggregation ◇, association, dependency ⇢ — with cardinality labels.
  • draw_swimlane_diagram — cross-functional flows: steps divided into lanes by owner (service, team, thread), horizontal or vertical, with automatic step ordering from the edges; box/diamond/ellipse steps and styled cross-lane edges.
  • draw_timeline — milestones ◆ and phase spans ▬ on a categorical ordered axis (dates, versions, quarters — anything), with optional labelled tracks: release histories, migration plans, roadmaps, incident timelines.
  • list_diagrams / open_diagram — enumerate saved diagrams and re-display any version of one (also returns its spec, so the LLM can roll back or build on it).

Edits are versioned. Every draw call without an id creates a new diagram (new tab) and returns its id; passing the id back edits it — the content saves as the next version and the existing tab updates in place. A version picker in the panel's titlebar lets you flip back to any older version; nothing is ever overwritten.

Validation is strict (unknown node ids, bad frame ranges → the tool call fails with a fixable message), so the LLM can't silently draw a broken picture.

Quick start

git clone git@github.com:tch1001/jarbobo.git && cd jarbobo
npm install && npm run compile && npm run vendor
npx vsce package --allow-missing-repository
cursor --install-extension jarbobo-0.1.0.vsix     # or: code --install-extension …

Stock VS Code 1.101+: that's it — the extension self-registers its bundled MCP server via vscode.lm.registerMcpServerDefinitionProvider, running on the editor's own Node (process.execPath), so there's nothing else to configure.

Cursor doesn't implement that registration API yet (tracked on the Cursor forum), so register the server by hand:

// ~/.cursor/mcp.json
{
  "mcpServers": {
    "jarbobo": { "command": "node", "args": ["<abs-path>/jarbobo/out/mcp-server.js"] }
  }
}
# Claude Code — same manual step, any client that lacks the registration API
claude mcp add --scope user jarbobo node <abs-path>/jarbobo/out/mcp-server.js

Reload the editor once, then ask your agent something like “draw a sequence diagram of what happens on import, and link every step to the source.”

Architecture

Two processes, one localhost bridge — so any number of MCP clients draw into the same editor:

Claude (Cursor agent / Claude Code / …)
   │  stdio MCP: draw_graph / draw_sequence_diagram / draw_class_diagram
   ▼
mcp-server.js        validates (zod) → saves ~/.jarbobo/diagrams/*.json
   │  POST /diagram  (port discovered via ~/.jarbobo/port.json)
   ▼
extension host       one webview tab per diagram · status bar · persists layouts
   ▼
webview              cytoscape (graphs) · hand-rolled SVG (sequence / UML)
   │  click node with file:line
   ▼
your editor          reveals the line, respecting locked editor groups

Panel cheat-sheet

Action How
pan right-drag, or scroll / ⇧-scroll
zoom ⌘-scroll (around cursor)
reset pan/zoom reset view button
recompute layout (discard drags) reset layout button
pin the detail panel 🔓 → 🔒 next to ✕ (click outside closes it when unlocked)
open a code ref directly (skip panel) ⌘-click the element
highlight a code ref while hovering hold ⌃ Ctrl
choose where refs open refs → code window / this window toggle
rearrange drag nodes (graphs) or class boxes — layout persists
switch diagram version v3 ▾ picker in the titlebar (edits bump the version; old ones stay)
reopen anything status bar item, or Jarbobo: Open Recent Diagram

Dev

media/dev.html is a standalone harness (serve media/ and open dev.html#graph|sequence|class). node scripts/test-mcp.mjs smoke-tests the MCP server over stdio. curl 127.0.0.1:$(jq .port ~/.jarbobo/port.json)/health checks the bridge.

MIT.

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选