Installing the SDK also installs theDocumentation Index
Fetch the complete documentation index at: https://docs.axioniclabs.ai/llms.txt
Use this file to discover all available pages before exploring further.
mechanex CLI. All commands prompt interactively if required flags are omitted.
Authentication
Authentication
mechanex signupCreate a new Axionic account interactively. Prompts for email and password. On successful signup, a default API key is created and saved to ~/.mechanex/config.json automatically.mechanex loginAuthenticate with an existing account. Prompts for email and password. On success, stores the access and refresh tokens in ~/.mechanex/config.json. Subsequent API calls and CLI commands use these tokens automatically.mechanex logoutClears stored tokens and API key from ~/.mechanex/config.json. The config file itself is not deleted.Account
Account
mechanex whoamiPrints the email address and user ID of the currently authenticated account.mechanex manage-account deletePermanently deletes your account and all associated data. Prompts for confirmation before proceeding. This action is irreversible.mechanex manage-account change-passwordUpdate your account password. Prompts for your current password and the new password.API Keys
API Keys
mechanex list-api-keysLists all API keys on your account. Output includes each key’s name, creation date, last-used date, and the ID (not the full key value).mechanex create-api-key [--name NAME]Creates a new API key. The full key value is printed once — copy it immediately. Use --name to label the key; prompts interactively if omitted.Billing
Billing
mechanex balancePrints your current credit balance in USD (e.g., Balance: $45.20).mechanex topupOpens a Stripe checkout page in your default browser to add credits to your account. The browser must be accessible from your environment for this command to be useful.Local Server
Local Server
mechanex serve [--port PORT] [--host HOST] [--use-vllm]Starts a local OpenAI-compatible API server. Serves the currently configured model (remote or local) at http://HOST:PORT/v1/. See Serving for details on the endpoints.Default: --host 0.0.0.0 --port 8000.