ComplyHat installs by pasting one URL into your host. The OAuth dance runs automatically the first time the host calls a tool, with no API keys to copy and no portal to sign into.
Sign up
Create an account at complyhat.ai. The first time your host calls a ComplyHat tool, you will be redirected to a consent screen and signed into your workspace. See authentication for what is happening underneath. Add the MCP URL to your host
Pick your host. The URL is the same everywhere: https://complyhat.ai/api/mcp. Claude Code
Claude Desktop
Codex CLI
Codex Desktop
OpenClaw
NemoClaw
claude mcp add --transport http complyhat https://complyhat.ai/api/mcp
Edit claude_desktop_config.json:claude_desktop_config.json
{
"mcpServers": {
"complyhat": {
"transport": "streamable-http",
"url": "https://complyhat.ai/api/mcp"
}
}
}
codex mcp add --url https://complyhat.ai/api/mcp complyhat
Codex Desktop reads the same ~/.codex/config.toml as Codex CLI. Run the Codex CLI command in the previous tab and Codex Desktop picks the server up on next launch.
Add ComplyHat to your openclaw.json MCP-clients map. The agent picks up the server on next launch.{
"mcpServers": {
"complyhat": {
"url": "https://complyhat.ai/api/mcp"
}
}
}
Add ComplyHat to the NeMo Agent Toolkit MCP-client config in your workflow YAML:mcp_clients:
complyhat:
url: https://complyhat.ai/api/mcp
Requires the nvidia-nat-mcp package. Make your first call
Ask your host which compliance frameworks apply to your account:{
"tool": "frameworks",
"arguments": { "mode": "status" }
}
Your host opens the consent screen, completes OAuth, and returns the framework status. Subsequent calls reuse the bearer token until it expires.
Reviewer / tester install. If you were given access for evaluation, drop the MCP into Claude Code with one command, then sign in at the login URL. Credentials are shared separately, never in this doc.claude mcp add --transport http complyhat https://complyhat.ai/api/mcp
Sign in: https://complyhat.ai/login Last modified on May 4, 2026