Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.complyhat.ai/llms.txt

Use this file to discover all available pages before exploring further.

ComplyHat installs by pasting one URL into your MCP host. The first time your host calls a tool, it opens a consent screen, completes OAuth in the background, and returns results — no manual credential setup required.
1

Sign up

Create an account at complyhat.ai. You don’t need to configure anything in the dashboard before installing — the OAuth consent screen handles workspace linking on your first tool call. See authentication for details on what happens under the hood.
2

Add the MCP URL to your host

The URL is the same for every host: https://complyhat.ai/api/mcp. Pick the tab that matches your setup.
Run this command in your terminal:
claude mcp add complyhat https://complyhat.ai/api/mcp
3

Make your first tool call

Ask your host to check which compliance frameworks apply to your account. Your host translates the request into a frameworks tool call with mode: "status":
{
  "tool": "frameworks",
  "arguments": { "mode": "status" }
}
On the first call, your host opens the consent screen, completes OAuth in the background, and then returns the framework status payload. Subsequent calls reuse the same bearer token until it expires.
ComplyHat’s canonical endpoint is the streamable-HTTP URL at /api/mcp. A legacy SSE endpoint at /api/mcp/sse exists for older clients and will be deprecated mid-2026. Use the streamable-HTTP endpoint for all new integrations.