Atribu
MCP Server

Authentication

MCP token scopes, rate limits, usage metering, and key management

All MCP requests require a Bearer token in the Authorization header.

Authorization header
Authorization: Bearer atb_user_your_token_here

MCP tokens are user-scoped -- a single token grants access to every workspace you belong to. The workspace and profile are specified per tool call, not stored on the token.

Creating a token

Create tokens from Developer > MCP Tokens in the Atribu dashboard.

Show once

Tokens are shown exactly once at creation. Store them securely -- you cannot retrieve them later.

Scopes

Each token has granular scopes that control what data and actions are available.

ScopeAccess
mcp:readAttribution data, campaigns, creatives, journeys (PII masked)
mcp:read_piiUnmask email, phone, and full name when include_sensitive=true
mcp:writeWrite-back operations (Meta CAPI conversion export)

Default scope when creating a token: mcp:read.

Write scope

mcp:write allows sending conversion data to external platforms. Only grant this when you specifically need Meta CAPI write-back. The workspace admin must also enable write-back in workspace settings.

Rate limits

MCP uses weighted rate limiting. Each tool has a cost in units, and your token has a per-minute burst cap.

Per-minute cap: 120 units (default).

ToolCost
list_workspaces, list_profiles0 units (free)
get_performance_summary, compare_periods, top_campaigns, top_creatives1 unit
explain_campaign, explain_customer_journey, creative_fatigue_check, find_anomalies, whatsapp_attribution_summary2 units
compare_attribution_models5 units
send_meta_conversions10 units

When rate limited, the tool returns a rate_limited error with retry_after (seconds) and retryable: true.

Usage metering

Your subscription includes a monthly unit allowance. Units are debited on each successful tool call.

PlanUnits per period
Trial2,000 / 14 days
Starter20,000 / month
Growth200,000 / month
Agency2,000,000 / month
EnterpriseUnlimited

Check your current usage from the Developer > MCP Tokens tab in the dashboard.

Token management

Rotation

Rotate tokens with zero downtime:

Click Rotate next to the token in the dashboard

A new token is generated and revealed once

Update your AI tool configuration with the new token

The old token is automatically revoked

Revocation

Click Revoke to immediately invalidate a token. Any AI tool using that token will lose access instantly.

Concurrent sessions

Tokens have no server-side state. Multiple AI tools or IDE sessions can use the same token simultaneously without interfering with each other. Each tool call specifies its own workspace and profile scope.

On this page