API tokens give you programmatic access to your Manager Toolkit data. Use them in CI/CD pipelines, scheduled scripts, dashboards, or any server-side workflow that needs to read or write your Actions, Catchups, Targets, and other entities without going through the web app.
Creating a Key
Account Limits
Each Manager Toolkit account can have up to three live API keys at a time. If you hit the limit, delete an existing key (or wait for one to expire) before creating a new one.
Using a Key
Pass the key as a Bearer token in the Authorization header on any API request:
GET /api/actions HTTP/1.1
Host: api.manager-toolkit.com
Authorization: Bearer mt_your_key_here
The same header is accepted by your MCP client when you point it at the API. See MCP Connector for the OAuth-driven alternative, which is the recommended path for interactive AI assistants.
Rotation
Keys do not auto-renew. When a key is approaching its expiry, generate a replacement key with the same scope, update your integration to use the new key, and revoke the old one. Two keys can coexist during the handover so you never break a live automation.
Revoking
You can revoke a key at any time from Profile > Tools. Revoked keys stop working immediately on the next request, since the API checks the hash against the live key list on every call.
Was this article helpful?