By Industry
Healthcare Legal Financial Services Pharmaceutical
By Use Case
Output Verification MCP Governance Compliance Automation Agent Governance
Platform
Console API & SDK Integrations Agent Identity Status
Resources
Documentation Blog Research Case Studies Changelog Privacy Policy
Contact
Sales Support Partnerships Login

Three API calls. Full verification.

REST API, TypeScript SDK, Python SDK, and MCP server. Choose your integration path.

Choose your path

REST API

POST /v1/shield, POST /v1/verify, GET /v1/audit. Works with any language, any framework.

API Docs

MCP Server

Model Context Protocol integration for Claude, Cursor, and any MCP-compatible AI tool. Three tools: meerkat_verify, meerkat_shield, meerkat_audit.

claude_desktop_config.json
{
  "mcpServers": {
    "meerkat": {
      "url": "https://api.meerkatplatform.com/mcp/sse",
      "transport": "sse"
    }
  }
}

Claude Connector

Native integration through Anthropic's connector directory. OAuth 2.0 authorization code flow with PKCE. Your Claude conversations gain verification superpowers.

Agent SDK

Python package for building governed agents. Baked-in heartbeat, event reporting, and verification calls.

terminal
pip install meerkat-sdk

Quick Start

terminal
# Verify your first AI output
curl -X POST https://api.meerkatplatform.com/v1/verify \
  -H "Authorization: Bearer $MEERKAT_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "output": "Patient takes Metoprolol 50mg BID.",
    "context": "Medications: Metoprolol 50mg BID, Lisinopril 10mg daily",
    "domain": "healthcare"
  }'