Hermes Agent
Use VibeHost from inside Hermes Agent, Nous Research's open-source self-improving terminal agent. MCP server or vibehost CLI as a tool.
Hermes Agent (github.com/NousResearch/hermes-agent) is Nous Research's open-source coding agent — built around a self-improving skill loop, native MCP client, and multiple terminal backends (local, Docker, SSH, Modal, Vercel Sandbox, etc.). MCP setup reference. It talks to VibeHost two ways: through our MCP server (interactive, OAuth) or via the vibehost CLI wrapped as a tool (scripted, PAT).
Option 1: MCP server (recommended for interactive use)
Hermes reads MCP config from ~/.hermes/config.yaml. Add VibeHost under mcp_servers:
mcp_servers:
vibehost:
url: "https://api.vibehost.com/mcp"Restart Hermes (or let auto-reload kick in — Hermes watches the config file). First tool call opens your browser for OAuth. After approval, Hermes has the full VibeHost tool surface — deploy, promote, rollback, list logs, manage custom domains.
In a Hermes session, just describe what you want:
Deploy this directory to VibeHost as a new app called my-hermes-app.
Hermes picks the right tools (create_app + create_deployment) and returns the live URL.
Hermes also supports per-server tool filtering with include / exclude lists if you want to expose only a subset of VibeHost's tools to the agent.
Option 2: CLI as a tool (recommended for scripts and CI)
Install the CLI:
curl -fsSL https://vibehost.com/install.sh | shAuthenticate with a Personal Access Token:
export VIBEHOST_TOKEN=$(pass vibehost/pat)
vibehost whoami --jsonHermes can shell out to vibehost deploy ./dist, vibehost app inspect, etc. through its terminal-tool interface. Every command takes --json and returns {ok, data | error} for clean agent parsing — see the CLI reference.
When to pick which
| Situation | Use |
|---|---|
| First-time setup | MCP (OAuth is one-click) |
| Interactive deploys from Hermes | MCP |
| Scripted / unattended workflows | CLI + PAT |
| You want every write to prompt for confirmation | MCP |
| You want raw stdout / stderr from the deploy | CLI |
Both can coexist.
See also
- MCP server — full tool list + auth details
- Personal access tokens — PAT setup for CI / scripts
- Sibling coding agents: Claude Code, Codex CLI, Cursor, Antigravity, Windsurf, OpenCode, Copilot CLI, Gemini CLI
Gemini CLI
Use VibeHost from inside Google's Gemini CLI. MCP server or the vibehost CLI as a tool.
MCP server
Wire any MCP-compatible client to VibeHost. The MCP server is the path for coding agents (Claude Code, Codex, Cursor, Antigravity) and chat clients (ChatGPT, Claude Desktop) that don't have a native CLI tool channel.