Account tools give agents programmatic access to the caller’s current plan, entitlements, and API consumption for the billing period. Both tools resolve identity from the authenticated OAuth token or API key — no email or user ID argument is needed. Agents can call these to gate behavior based on available features, or to surface usage information in session summaries.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/virsanghavi/axis/llms.txt
Use this file to discover all available pages before exploring further.
get_subscription_status
Returns the caller’s current plan and entitlements. Resolved from the authenticated OAuth token or API key — no arguments required.
Parameters: None (resolved from the authenticated session)
Returns:
| Field | Type | Description |
|---|---|---|
plan | "free" | "pro" | The current subscription tier |
validUntil | ISO timestamp | When the current subscription period ends |
entitlements | string[] | The list of features available on this plan |
org | string | The org identifier this subscription belongs to |
get_usage_stats
Returns API usage for the current billing period. Resolved from the authenticated session — no arguments required.
Parameters: None (resolved from the authenticated session)
Returns:
| Field | Type | Description |
|---|---|---|
requestCount | number | Total MCP tool calls made this billing period |
searchCount | number | Hosted search calls (search_codebase, deep_search) this period |
indexedFiles | number | Files currently in the hosted search index |
periodStart | ISO timestamp | Start of the current billing period |
periodEnd | ISO timestamp | End of the current billing period |
limits | object | Plan limits for each metric |
null limit means the metric is unrestricted on the current plan.
Free vs. Pro
Axis is open-core. The coordination layer is free for everyone; the intelligence layer is Pro.Free — coordination layer
Available to all orgs at no cost:
- Job board (post, claim, complete, cancel, release)
- Advisory file locks with tamper detection
- Live shared notepad
- Session management and transcripts
- Project soul (local server)
- Agent presence (
list_agents) search_codebasevia local ripgrep (no index needed, instant)
Pro — intelligence layer
Hosted features, $20 / seat / month:
search_codebase: vector + full-text + trigram, fused and LLM-rerankedrelatedfiles anddefinitionsenrichment in search resultsdeep_search: multi-hop agentic answer engine with citations- Incremental hosted indexing (content-hashed, cheap re-runs)
- Managed backend, dashboard, live team board
- Audit trails and session history
Graceful degradation pattern
Agents working on mixed-tier orgs should degrade gracefully rather than failing when a Pro feature is unavailable. Check the plan before reaching for hosted intelligence tools:Billing and org seats
Orgs are billed per active member at $20 / seat / month. Seat count equals the number of active org members — adding a member adds a seat, removing one frees it (prorated via Stripe). Admins manage billing from/billing on the dashboard.
Every account starts as a one-person org, so solo users are unaffected by team billing until they invite a teammate. Once you invite someone, all agents — yours and theirs — coordinate on the same project without clobbering each other: shared job board, shared file locks, and a shared codebase index.