REST API, TypeScript SDK, Python SDK, and MCP server. Choose your integration path.
POST /v1/shield, POST /v1/verify, GET /v1/audit. Works with any language, any framework.
API DocsModel Context Protocol integration for Claude, Cursor, and any MCP-compatible AI tool. Three tools: meerkat_verify, meerkat_shield, meerkat_audit.
{
"mcpServers": {
"meerkat": {
"url": "https://api.meerkatplatform.com/mcp/sse",
"transport": "sse"
}
}
}
Native integration through Anthropic's connector directory. OAuth 2.0 authorization code flow with PKCE. Your Claude conversations gain verification superpowers.
Python package for building governed agents. Baked-in heartbeat, event reporting, and verification calls.
pip install meerkat-sdk
# 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" }'