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

Automating OAuth Token Refresh for Bots Using Claude Code
A Reddit user shares a method to prevent OAuth token expiration by configuring Claude Code to automatically refresh tokens every 8 hours, keeping bots running continuously without manual intervention.

Configuring OpenClaw for Smooth Agent-to-Agent Communication
A Reddit user shares specific configuration settings for OpenClaw that reduce timeouts in agent-to-agent communication, including tool visibility settings, memory directives, and workarounds for the ANNOUNCE_SKIP limitation.

Todoist connector removed from Claude, custom setup required
The official Todoist connector is no longer available in Claude. Users can add Todoist as a custom connector using the MCP URL https://ai.todoist.net/mcp, but this requires a Claude Pro or Max subscription.

Modifying OpenClaw's default system prompt to bypass content restrictions
A user modified OpenClaw's configuration file to change the default system prompt from "You are a helpful, respectful and honest assistant" to a custom prompt that ignores external safety filters, effectively removing content restrictions. The process involves editing config.js in the node-llama-cpp installation directory.