@ompo-design/mcp-server
v0.1.12
Published
MCP server for applying Ompo visual edits to a codebase
Downloads
1,891
Maintainers
Readme
@ompo-design/mcp-server
MCP server for applying Ompo visual edits to your codebase.
Important: this is not a web connector
Settings → Connectors → Add custom connector only works for remote URLs (hosted servers).
Ompo is a local MCP server. Install it via the steps below — not through the Connectors URL dialog.
Claude Desktop — install for ALL projects (recommended)
Prerequisites: Node.js installed.
1. Run one command in Terminal
npx @ompo-design/mcp-server setup-globalThis adds Ompo to:
- Claude Desktop (
claude_desktop_config.json) - Claude Code user config (
~/.claude.json)
Works across every project, not just one folder.
2. Quit and reopen Claude Desktop
Fully quit with Cmd+Q, then reopen.
3. Verify
Open any Code project, then type:
/mcpompo should show 4 tools. Approve it if prompted.
Manual install (Claude Desktop)
- Open Claude Desktop → Settings → Developer → Edit Config
- Add inside
mcpServers:
"ompo": {
"command": "/usr/local/bin/npx",
"args": ["-y", "@ompo-design/mcp-server"],
"env": {}
}- Save, quit Claude Desktop (Cmd+Q), reopen.
Use the full path to npx — the Desktop app often cannot find npx on its own.
Per-project install (optional)
From a project folder:
npx @ompo-design/mcp-server setupCreates .mcp.json in that project only.
Check install
npx @ompo-design/mcp-server doctorUsing Ompo
- Edit your site in Ompo
- Click Send (creates
.ompo/edits/in your project) - Open that same project in Claude Code
- Paste the Send prompt — Claude calls
get_editandapply_edit
Cursor
.cursor/mcp.json:
{
"mcpServers": {
"ompo": {
"command": "npx",
"args": ["-y", "@ompo-design/mcp-server"]
}
}
}