VS Code Extension
Hand an MCP server to your platform team without leaving your editor.
One command submits your server.json or .mcpb bundle
for review.
Search for Magertron in your editor's extensions panel, or install it from the registry your editor uses.
code --install-extension magertron.magertron-submit
Cursor and other forks use the same command with their own
binary — cursor --install-extension magertron.magertron-submit.
Ctrl+Shift+X / Cmd+Shift+X)The .vsix is served directly if your network has no
route to a marketplace, or if you need a specific version rather than the
newest.
code --install-extension magertron-submit-<version>.vsix
Or, from inside the editor: the ⋯ menu at the top of the Extensions panel, then Install from VSIX….
mcpctl binary it speaks to, and the two are versioned together.
Open Settings (Ctrl+, / Cmd+,) and search for magertron.
| Setting | What to put |
|---|---|
| Server Url | Your platform's address, the same one you use for the admin UI |
| Token | A service-account token — or leave it empty and the extension uses your existing mcpctl login |
| Insecure Tls | Only for an evaluation install using a self-signed certificate |
mcpctl login means it stays where it already lives.
Open your manifest, or right-click it in the Explorer.
Ctrl+Shift+PAnything credential-shaped is removed before the manifest leaves your machine. Environment variable names are sent; values are not, including defaults written into the file. Your platform team can see that a server needs a secret without ever seeing the secret.
Full walkthrough, including what gets sent and what to do when a submission is rejected: VS Code extension user guide (PDF).
Run the orchestrator in your own sandbox and point the extension at it.
# add the chart repository
helm repo add magertron https://magertron.com/charts
helm repo update
# install into a new namespace
helm install mcp magertron/mcp-orchestrator \
--namespace mcp-system --create-namespace
Starts in Free Tier. No license required. More at magertron.com/charts.
Also available for Cursor. More editors to follow.