Setup¶
Get Your Aha! Credentials¶
API Token¶
- Log in to your Aha! workspace
- Go to Settings > Personal > Developer > API
- Generate a new API token
- Copy the token (it won't be shown again)
Domain¶
Your Aha! subdomain is the first part of your workspace URL:
- If your workspace is at
mycompany.aha.io, your domain ismycompany
Configure Credentials¶
Option 1: Environment Variables¶
Option 2: Command-Line Flags¶
Option 3: Vault-Backed Credentials¶
For production use, store credentials in a vault:
# 1Password
export OP_SERVICE_ACCOUNT_TOKEN="ops_..."
aha-mcp-server --vault op://MyVault --credentials-name aha
# Bitwarden
export BW_ACCESS_TOKEN="..."
export BW_ORGANIZATION_ID="..."
aha-mcp-server --vault bw://org-id --credentials-name aha
# Keeper
export KSM_TOKEN="US:..."
aha-mcp-server --vault keeper:// --credentials-name aha
See Credentials for detailed configuration options.