Making an MCP Server Install Itself: Three Hosts, Three Mechanisms, Gotchas

MCP server setup still often means hand-editing a JSON file — and every host uses a different file and format. That friction keeps developers from running servers they'd otherwise use. This post breaks down three hosts, their installation mechanisms, and the gotchas that trip you up.
Three Hosts, Three Mechanisms
- VS Code: Has a real API —
registerMcpServerDefinitionProvider. Declare a provider inpackage.jsonand return the server definition at runtime. VS Code shows a consent prompt. No config file editing. Cleanest, but requires shipping a VS Code extension. - Cursor: No native API. Write
.cursor/mcp.jsondirectly with root keymcpServers. - Claude Code: Use the CLI. Do not hand-write the file. Run e.g.:
claude mcp add --transport stdio --scope <user|local> --env … <name> -- node <path>
Six Gotchas to Guard Against
- That JSON file isn't yours. Cursor's
mcp.jsonholds the user's other servers. Read, merge your entry, preserve unrelated keys — don't overwrite. - Survive a malformed file. If the file exists but is invalid JSON, do not treat it as empty and overwrite. Same for read/permission errors — rethrow. Treating “couldn't read it” as “nothing there” will corrupt configurations.
- Back up + write atomically. Copy the existing file before touching it, write to a temp file, then rename over the target. A half-written
mcp.jsonbreaks the editor. - Installing twice must be a no-op, not an error. The Claude CLI errors if the entry already exists — so
removethenadd. For file hosts, key by server name and replace in place. Re-running should converge, not duplicate. - Scope changes everything. User-level vs project-level install changes where the config lands and what the server needs (e.g., explicit data dir vs. upward-discovery). Pick deliberately.
- You own staying current. The version registered drifts from what you ship. Add a check: “is what's installed still the version I bundle?” and a clean re-install path. One button shows state: install, update, or up to date.
The meta-lesson: hand-setup fails because a human pasting a snippet doesn't know the absolute path, the right scope, env vars, or how to merge safely. The install code does.
📖 Read the full source: r/ClaudeAI
👀 See Also

Practical Multi-Agent System Architecture Advice from Experience
A developer shares five specific patterns for building multi-agent AI systems based on experience running a 7-agent daily system: start with one agent, use an orchestrator pattern, implement shared memory with JSON files, route models by task, and add confirmation loops.

Anthropic publishes Champion Kit for Claude Code adoption
A playbook for engineers pushing Claude Code at their company: share reusable prompts, answer in public channels, and host a weekly show-and-tell thread — ~40 minutes total per week.

Interactive Explainer Maps Claude Code Agent Loop Designs, from Single Calls to Self-Mutating Prompts
An interactive site built with Opus 4.7 visualizes 11 real agent loop designs for Claude Code, from basic calls to agents that rewrite their own prompts, with SVG animations showing memory and loop mechanics.

Mastering Backup: Safeguarding Your OpenClaw Agent
In an era dominated by automation and AI, ensuring the safety of your OpenClaw agent through robust backup strategies is paramount. Learn the essential steps to secure your digital assistant.