# MCP server

Connect Claude Desktop, Cursor, or any Model Context Protocol client to Klarify's Compliance Status API.


Package

@klarify/mcp — studio MCP server in the Klarify monorepo (packages/mcp).

Build from source:

git clone https://github.com/chuta/klarify.git
cd klarify
pnpm install
pnpm --filter @klarify/mcp build

Tools (Phase 1)

ToolAuthDescription
get_compliance_statusFounder share tokenLive compliance snapshot — Readiness Score, fundraise risk, checklist %, licensing, top gaps
get_klarify_api_infoNoneStatic metadata — API URLs, OpenAPI link, VASP categories, docs

Phase 2 (planned): authenticated founder tools (classify_product, get_readiness_score, ask_klarify).


Prerequisites

Founders create a share token in Dashboard → FundRaise Mode → Create investor share link (Compass+ required).

The token is the API credential. Revoking the link invalidates both the human view and MCP/API access.


Claude Desktop

~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "klarify": {
      "command": "pnpm",
      "args": ["exec", "klarify-mcp"],
      "cwd": "/absolute/path/to/klarify/packages/mcp",
      "env": {
        "KLARIFY_API_BASE_URL": "https://api.klarify.africa"
      }
    }
  }
}

Restart Claude Desktop after saving.


Cursor

.cursor/mcp.json (project or global):

{
  "mcpServers": {
    "klarify": {
      "command": "node",
      "args": ["/absolute/path/to/klarify/packages/mcp/dist/index.js"],
      "env": {
        "KLARIFY_API_BASE_URL": "https://api.klarify.africa"
      }
    }
  }
}

Example agent prompt

Use the Klarify MCP tool get_compliance_status with token {founder_provided_token} and summarise the regulatory risk for our accelerator pipeline. Surface the disclaimer.


Environment variables

VariableDefault
KLARIFY_API_BASE_URLhttps://api.klarify.africa
KLARIFY_MCP_USER_AGENTklarify-mcp/0.1.0

Mandatory disclaimer

Every get_compliance_status response includes:

This is a self-assessment snapshot… not legal advice… not a regulatory opinion, licence, certification, or guarantee of compliance.

Agents and UIs must surface this disclaimer to end users.


AI discoverability

Klarify publishes machine-readable site orientation at:


Support

Integration help: [email protected]

GitHub: packages/mcp