MCP

HLVM can use Model Context Protocol servers as tools.

Add A Remote Server

hlvm mcp add docs https://example.com/mcp --transport http
hlvm mcp login docs

URL inputs default to HTTP. Use --transport sse for SSE servers. Use login for OAuth-capable remote servers.

Add A Stdio Server

hlvm mcp add github -- npx -y @modelcontextprotocol/server-github

The -- separator is required for stdio commands.

Inspect Servers

hlvm mcp list
hlvm mcp show github

list and show report configured servers and live connection status.

Remove Or Logout

hlvm mcp logout docs
hlvm mcp remove docs

Where Config Lives

Servers persist to ~/.hlvm/mcp.json. HLVM may also discover inherited server definitions from other tools as read-only entries.

Next