Enable cloud access
- Open Settings → Developers → Cloud API & Connectors.
- Review the disclosure and turn the feature on.
- Wait for Anarlog to upload your existing meetings.
- Create a cloud API key and copy it. The key is shown once.
anl_ and are stored hashed. Revoke a key from the same settings page when you no longer use it.
REST API
The base URL ishttps://api.anarlog.so/v1. Send your cloud key as a bearer token:
List responses carry a
pagination object with offset, limit, returned, total, and next_offset; a missing next_offset means the page reached the end. See the OpenAPI document for the complete hosted schema.
Errors use this envelope:
unauthorized, not_found, invalid_request, internal_error. The hosted API can also return:
403 subscription_requiredwhen the account does not have an active Pro subscription.403 cloud_api_not_enabledwhen the account has opted out.429with a plain-textrate limit exceededbody andretry-afterheader when you exceed the hosted request limit.
Meeting snapshots are limited to 2 MB. When a snapshot is larger, Anarlog removes word-level transcript timing before upload but keeps the transcript text. If the snapshot is still larger than 2 MB, that meeting cannot upload. A hosted transcript without word timing returns the retained text with an empty
words array.Remote MCP
The Streamable HTTP endpoint is:list_meetingsget_meetingget_meeting_transcriptget_recurring_meeting_history
Claude Code
Add the server with the cloud key in the authorization header:OpenAI Responses API
Pass the remote MCP URL and authorization header in the tool definition:Other MCP clients
Choose Streamable HTTP, usehttps://api.anarlog.so/mcp as the server URL, and add:
Disable cloud access
Turn off Cloud API & Connectors under Settings → Developers. Anarlog immediately deletes all server-readable meeting snapshots. Your local meetings and end-to-end encrypted cloud sync data are unchanged. Revoked keys cannot read snapshots. If your Pro subscription ends, existing cloud keys returnsubscription_required.