Set up Claude Code
import { Aside, Steps, Tabs, TabItem } from ‘@astrojs/starlight/components’;
Melbora ships a Claude Code plugin with 9 skills that wrap the platform’s CLI and SDK. Once installed, you can ask Claude things like:
Create a new Melbora site for Joe’s Plumbing and attach joesplumbing.com to it.
…and Claude will pick the right skill, run the right commands, and walk you through the parts (DNS records, OAuth approvals) that need your input.
Install
Section titled “Install”In Claude Code, run:
/plugin marketplace add Vantage-Connections-Org/VantageConnections/plugin install vantage@vantage-connectionsClaude Code fetches the marketplace manifest from the repo root,
finds the vantage plugin, and caches it under
~/.claude/plugins/cache/.
For environments that block ad-hoc git clones:
/plugin install @vantageconnections/claude-pluginSame plugin, same skills — installed from the npm registry instead of GitHub.
If you’re contributing to the plugin itself, point at a local checkout:
/plugin marketplace add /path/to/VantageConnections/plugin install vantage@vantage-connections/plugin marketplace update reloads after edits.
Verify with:
/plugin listYou should see vantage listed under enabled plugins.
What you can ask Claude
Section titled “What you can ask Claude”Each of the 9 skills auto-invokes on specific user phrases. Some examples:
| Say | Skill triggered |
|---|---|
| ”Set up Melbora on this machine” | vantage-setup |
| ”Create a new Melbora site for Acme Coffee” | vantage-new-website |
| ”Port my existing site to Melbora” | vantage-port-repo |
| ”Connect Shopify to my Melbora site” | vantage-connect-shopify |
| ”Add bookings to wb_01J7XXX” | vantage-bookings |
| ”Set SEO tier to growth” | vantage-seo |
| ”Add acmecoffee.com as a domain” | vantage-domains |
| ”Install Melbora MCP in Cursor” | vantage-mcp-setup |
| ”I’m getting a 401 from Melbora” | vantage-troubleshoot |
You can also invoke explicitly with /vantage-connections:<skill-name>.
Prerequisites the skills assume
Section titled “Prerequisites the skills assume”- Node.js 20+
@vantageconnections/cliinstalled globally — most skills shell out tovantage <command>. The first skill (vantage-setup) will install it for you if it’s missing.- A
vc_pat_*Personal Access Token — minted in the portal at Settings → API keys.vantage-setupwalks you through this.
How this relates to MCP
Section titled “How this relates to MCP”The plugin and the MCP server are complementary, not redundant:
- Plugin (this page) — gives Claude prompt-style skills. Claude reads the SKILL.md when your query matches, then composes shell commands or asks you guided questions.
- MCP (setup guide) — gives Claude tool-style access. Each Melbora operation is a discrete function Claude calls directly with structured arguments.
For most users, the plugin is the right starting point — lower friction, opinionated workflows, no JSON config to edit. Add MCP on top if you want Claude to call platform operations programmatically in larger automations.
Updating
Section titled “Updating”The marketplace manifest version pins each plugin install. To pull new versions:
/plugin marketplace update vantage-connections/plugin install vantage@vantage-connections # re-install for the new versionThe CLI itself updates separately:
npm install -g @vantageconnections/cli@latestDisabling or removing
Section titled “Disabling or removing”/plugin disable vantage # stop loading the skills/plugin uninstall vantage # remove from cache entirely/plugin marketplace remove vantage-connections # forget the marketplaceSee also
Section titled “See also”- Set up MCP — programmatic counterpart, runs in any MCP host
- CLI reference — what each skill is wrapping
- Plugin source — read or fork the SKILL.md files