get_available_numbers
Find purchasable phone numbers by specifying country code, type (local, tollfree, mobile), search pattern, or locality with this tool on VoiceAI-MCP-VAVicky.
Instructions
Get available phone numbers for purchase
Input Schema
Name | Required | Description | Default |
---|---|---|---|
country_code | No | Country code | US |
locality | No | Locality/city for local numbers | |
number_type | No | Number type | local |
search_pattern | No | Search for numbers containing this pattern |
Input Schema (JSON Schema)
{
"properties": {
"country_code": {
"default": "US",
"description": "Country code",
"type": "string"
},
"locality": {
"description": "Locality/city for local numbers",
"type": "string"
},
"number_type": {
"default": "local",
"description": "Number type",
"enum": [
"local",
"tollfree",
"mobile"
],
"type": "string"
},
"search_pattern": {
"description": "Search for numbers containing this pattern",
"type": "string"
}
},
"required": [],
"type": "object"
}