Provision phone numbers and receive SMS verification codes.
botcall auth login --api-key bs_live_YOUR_KEY
botcall usage
botcall provision
botcall provision --area-code 206 # Seattle area code
botcall list
botcall inbox
botcall inbox --limit 20
botcall get-code # Wait up to 120s
botcall get-code --timeout 60 # Custom timeout
Returns just the code (e.g., 847291) for easy parsing.
botcall release <number-id>
botcall upgrade starter # $9/mo - 1 number, 100 SMS
botcall upgrade pro # $29/mo - 5 numbers, 500 SMS
botcall billing # Opens Stripe portal
# 1. Get a number
botcall provision --area-code 415
# Output: +14155551234
# 2. Use number to sign up (your agent does this)
# 3. Wait for verification code
CODE=$(botcall get-code --timeout 120)
echo "Code received: $CODE"
# 4. Enter code to complete signup
For Claude Desktop/Cursor, add to your MCP config:
{
"mcpServers": {
"botcall": {
"command": "npx",
"args": ["@botcallio/mcp"],
"env": {
"BOTCALL_API_KEY": "bs_live_YOUR_KEY"
}
}
}
}
共 1 个版本