Every AI agent registered, authenticated, and monitored from the moment it connects. The Meerkat Console is the single entry point. SDK v2.0.0 connects with 3 lines of code. 9 agents governed in our own fleet. This is not a roadmap. It is running in production.
Get Startedfrom meerkat_sdk import MeerkatAgent
agent = MeerkatAgent(
api_key="your_api_key",
agent_id="agt_healthcare_scribe_a1b2c3",
name="Clinical Scribe Verifier",
domain="healthcare",
)
result = agent.verify(
output=ai_generated_note,
context=patient_ehr_data,
)
if not result.passed:
agent.alert(f"Flagged: trust {result.trust_score}")
Unique identity format: agt_{domain}_{name}_{hash}. Client credentials per agent. Authorized domains scoped per agent. Full lifecycle from registration to decommission.
Purpose-built Python SDK. Shield (ingress), Verify (output verification), Audit (session chaining), Heartbeat (connection monitoring), Delegation (task routing). Auto-retry with exponential backoff. Typed response models.
Real-time connection status. Online (green, < 5 min), Idle (amber, 5-60 min), Offline (red, > 1 hr). Auto-refresh every 30 seconds. Fleet-wide health dashboard.
Natural language task routing. "Draft a clinical note" routes to the right agent automatically. The orchestrator knows each agent's capabilities, connection status, and authorized scope.
Every verification, every shield scan, every heartbeat, every delegation. Per-agent event history with timestamps. Exportable for compliance review and incident investigation.
Each agent authorized for specific domains: healthcare, legal, financial, pharma. Domain-specific verification thresholds. An agent authorized for healthcare cannot silently process financial data.
Agent registry and monitoring via API. 5 minutes to register your first agent.
Verification runs inside your network. Agent telemetry stays internal.
Full agent governance stack behind your firewall. For maximum control.
Free tier. 10,000 verifications/month. No credit card.