live-ketcher-mcp
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., "@live-ketcher-mcpAdd a methyl group to the current molecule"
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.
live-ketcher-mcp
MCP server that connects AI assistants to a live Ketcher window, the open-source web-based chemical structure editor. Draw, edit, and organize structures directly in the canvas you have open.
Status: Tier 1 + Tier 2 underway. Transport (Phase 0) is done.
Nineteen tools are live and verified end to end through a real
mcp.call_tool round trip against a real Ketcher v3.12.0 instance:
ketcher_get_document_state, ketcher_diff_since_last_check,
ketcher_find_duplicates, ketcher_insert_structure,
ketcher_export_structure, ketcher_get_properties,
ketcher_transform_structure, ketcher_list_atoms, ketcher_add_atom,
ketcher_edit_atom, ketcher_edit_bond, ketcher_remove,
ketcher_get_stereochemistry, ketcher_set_bond_stereo,
ketcher_move_structure, ketcher_get_layout, ketcher_make_arrow,
ketcher_make_plus, ketcher_list_arrows. See
ROADMAP.md for the full scope and tool-by-tool port map,
and AGENTS.md for the transport internals and everything
that only surfaced once a real server and real tools existed — including
three corrections: aromatize()/dearomatize() are documented in
Ketcher's own API reference but don't actually exist on this build,
setMolecule() recenters the WHOLE document to a canonical viewport
position on every write (confirmed: absolute coordinates are never
preserved, only offsets between structures survive, exactly), and that's
the actual mechanism behind the small sibling-position drift noted
earlier.
Unlike its sibling project live-chemdraw-mcp,
this needs no commercial license and no Windows: Ketcher is Apache 2.0 and
runs in a browser.
Why this design
Ketcher exposes a real JavaScript API (getKet, setMolecule, layout,
calculate, getSmiles/getMolfile/getCDXml/getInchi, and OCR via
recognize). That means editing is a document round trip: read KET
JSON, transform it in Python, write it back. There is no imperative object
model to fight, so most tools are pure functions over JSON and are unit
testable without a browser.
Three findings from a live prototype against Ketcher v3.12.0 shaped the
architecture (details in ROADMAP.md section 6b):
setMolecule()pushes onto the undo stack rather than clearing it. AI edits are undoable, one tool call per undo entry.Round trips preserve coordinates (to ~1e-6), selection, and atom ordering.
Writing back a subset of the document silently deletes everything omitted. The transport enforces read-all / write-all so tools cannot get this wrong.
Related MCP server: QCViz-MCP
Layout
ketcher_connector/
transport/ Playwright bridge to a live Ketcher page
connection.py launch/attach a visible browser running Ketcher
document.py read_document/apply_transform, the whole-document rule
identity.py stable claude-* ids via content hash, with rebind() for
self-initiated edits (see AGENTS.md item 1 under rule 6)
internals.py quarantined below-API access (undo/redo/selection)
worker.py dedicated thread owning the Playwright session
convert.py hidden scratch page: representation <-> KET fragment,
layout(), calculate() -- isolated from the live canvas
bridge/ KET round-trip document surgery: get_document_state,
diff_since_last_check, find_duplicates, insert/export_
structure, get_properties, transform_structure
(action='clean' only), list_atoms, add/edit_atom, edit_bond,
remove, get/set_bond_stereo, move_structure, get_layout,
make_arrow, make_plus, list_arrows
domain/ pure logic, no editor coupling, pytest-covered
ket_merge.py splice/replace/centroid/remove_ref/arrow_node/
plus_node helpers for merging or removing a fragment
or annotation without disturbing the rest
ket_atoms.py pure atom/bond mutation (add/edit/remove/stereo),
including index-renumbering on removal
dedup.py, diff.py ported unchanged from live-chemdraw-mcp -- fed
KET-derived data instead of CDXML-derived data
_cdxml_port_pending/ ported but CDXML-coupled, see AGENTS.md
tools/ thin MCP tool definitions
tests/ domain tests, run with no browser required
server.py FastMCP stdio entry point
test_smoke_visual.py live transport + bridge smoke test, real KetcherSetup
python -m venv .venv
.venv\Scripts\python -m pip install -e .
.venv\Scripts\python -m playwright install chromiumRegister in %APPDATA%\Claude\claude_desktop_config.json:
"mcpServers": {
"ketcher": {
"command": "C:\\path\\to\\live-ketcher-mcp\\.venv\\Scripts\\python.exe",
"args": ["C:\\path\\to\\live-ketcher-mcp\\server.py"]
}
}Restart the Claude desktop app. The server launches its own visible browser window running Ketcher — no separate install needed beyond the Playwright Chromium binary above.
Testing
python -m pytest # pure domain logic, no browser
python test_smoke_visual.py # live transport check, visible window
python test_smoke_visual.py --headless # live transport check, no windowThe pytest suite is pure logic against fakes and fixtures — no browser, no
Ketcher instance, no network. test_smoke_visual.py is the live
counterpart: it drives a real Ketcher instance and checks the properties
documented in ROADMAP.md section 6b and AGENTS.md (undo behavior,
whole-document write safety, identity stability) against the real app, not
just against the transport code in isolation.
Provenance
The domain/ modules and their tests are ported from live-chemdraw-mcp,
which is MIT licensed and by the same author. They were chosen because they
carry no editor coupling: caption association, panel-box violation
detection, layout math, SMARTS-based substructure matching, derivative
enumeration, HRMS text generation, and IUPAC naming are all independent of
which editor renders the result.
License
MIT. Ketcher itself is Apache 2.0 and is not bundled here.
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
- Flicense-qualityDmaintenanceAn MCP server for deconstructing and analyzing Metal-Organic Framework (MOF) structures, including SBU and ligand identification, guest removal, and COF stacking analysis. It enables AI agents to perform automated chemical informatics and structural characterization on crystal structures via CIF files.Last updated1
- Alicense-qualityCmaintenanceAn MCP server for quantum chemistry that enables LLMs to perform electronic structure analysis, parse calculation outputs, and generate 3D orbital visualizations. It integrates tools like PySCF, cclib, and py3Dmol to facilitate molecular structure manipulation and bonding analysis through natural language.Last updatedBSD 3-Clause
- Alicense-qualityCmaintenanceAn MCP server that gives LLMs native access to cheminformatics and molecular ML tools, enabling molecular structure manipulation, descriptor calculation, ML model training, and analysis report generation through natural conversation.Last updated28MIT
- Alicense-qualityCmaintenanceMCP server for Ketcher chemical structure editor integration, enabling SMILES/MOL/InChI conversion, image generation, molecular property calculation, and validation.Last updatedMIT
Related MCP Connectors
AI-powered bioprotocol optimization — generate, search, and manage lab protocols via MCP
MCP Hub: AI service discovery, per-user OAuth, and multi-service workflow orchestration
MCP-native collaborative markdown editor with real-time AI document editing
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/MALeitch/live-ketcher-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server