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

Claude Code O365 MCP Conditional Access Setup Issues and Solutions
A developer shares specific solutions for two problems encountered when setting up Claude Code's O365 MCP connector under conditional access policies: finding the correct application IDs for policy rules and resolving authentication errors related to server locations.

Running Qwen3.6-35B-A3B with ~190k Context on 8GB VRAM + 32GB RAM – Setup & Benchmarks
A Reddit user shares a working llama.cpp configuration for Qwen3.6-35B-A3B GGUF models on an RTX 4060 (8GB VRAM) + 32GB DDR5, achieving 37-51 tok/s at 192k context using TurboQuant and specific flags.

Setting Up Qwen3.5-27B Locally: vLLM vs llama.cpp Comparison
A Reddit user shares practical tips for running Qwen3.5-27B locally, comparing llama.cpp and vLLM backends with specific configuration recommendations and benchmark results.

5 Common OpenClaw Setup Mistakes and How to Fix Them
Practical fixes for the five most common OpenClaw setup mistakes: skipping persistent memory, no outbound access, overloading system prompt, missing fallback behavior, and using a single model.