Developer Documentation

Build agents and automations on top of the MTY Agentic Labs platform — send WhatsApp, Messenger, and Instagram messages, read inbox conversations, pull social and ads analytics, and manage message templates.

Everything here is publicly available to platform users. You don't need access to our codebase to build an integration — only an API key from your tenant.


Pick your integration path

API KeysWebhook AgentsMCP Server
DirectionYour code calls our APIWe call your endpointClaude Desktop calls our API
Triggered byYour code (cron, user action, etc.)Inbound end-user messagesA Claude chat
SetupSelf-service — 2 minutesOnboarded by our team5 minutes
Best forOutbound automation, analytics pulls, custom dashboards, scheduled jobsConversational AI, real-time repliesAd-hoc operations in Claude Desktop
AuthenticationX-API-Key: mta_…Shared callback secretSame API key, via the MCP server
GranularityPer-key scopesPer-channel agent assignmentInherits API key scopes

Most teams use a combination: a webhook agent for the live conversation, an API key for scheduled broadcasts or KPI dashboards, and the MCP server for ad-hoc queries.


Quick start

  1. Get an API key — log in, go to Settings → API Keys, click Create, copy the key.
  2. Try a request:
    curl -H "X-API-Key: mta_..." \
      https://api-meta.agenticlabs.site/api/social/summary
    
  3. Read the API Keys guide for the full endpoint reference, code samples in Node / Python, and security best practices.

What we don't expose

For your protection and ours, the public docs deliberately omit:

  • Internal deployment infrastructure (hosts, runners, CI configuration)
  • Database schemas, migration internals, and backend file paths
  • App secrets, OAuth client secrets, encryption keys, JWT signing keys
  • Specific tenant or channel identifiers from production accounts
  • Webhook signing keys (the value is issued during agent onboarding, not documented here)

If you need any of that for a legitimate reason (e.g., self-hosting, audit), contact the team directly.


Support & roadmap

  • Found a bug? Open a ticket with your tenant and a request ID (see the x-request-id header on any failed response).
  • Want a feature? The internal "API key & external integration hardening" epic tracks: per-key rate limits, granular per-route scopes, usage audit log, key rotation flows, CORS tightening, MCP npm publication, tenant-wide oversight, signed outbound webhooks. We prioritize based on user demand.

The base URL https://api-meta.agenticlabs.site is stable. The interactive OpenAPI explorer lives at /docs (no auth required to view the schema).