HaloPSA and Servosity in OpenClaw

OpenClaw is a browser-controlled AI agent with native Skill support (a SKILL.md superset of Anthropic’s spec) and native MCP. Like Hermes, it’s skill-native - it reads MSP Skills’ SKILL.md directly and speaks MCP.

What you need

Step 1 - Install OpenClaw (one time)

# macOS / Linux / WSL2
curl -fsSL https://openclaw.ai/install.sh | bash

# Windows (PowerShell)
iwr -useb https://openclaw.ai/install.ps1 | iex
openclaw skills install git:Servosity/msp-skills/skills/halopsa@main
openclaw skills install git:Servosity/msp-skills/skills/servosity@main

OpenClaw reads each skill’s SKILL.md, sees the metadata.openclaw.requires.bins block (already in the frontmatter), and installs the required CLI. Confirm with:

openclaw doctor

Path B - register as an MCP server

openclaw mcp set halopsa '{"command":"halopsa-mcp"}'
openclaw mcp set servosity '{"command":"servosity-mcp"}'

Set the same env vars the CLI needs. See the OpenClaw MCP CLI docs for the canonical command shape.

Step 2 - Ask a real question

Note on the subdirectory install path

OpenClaw’s monorepo subdirectory git: syntax is documented in the ClawHub skill-format spec. If git:Servosity/msp-skills/skills/halopsa@main doesn’t resolve in your build, clone the repo locally and run:

openclaw skills install ./msp-skills/skills/halopsa

What’s next

← Back to main install