Mobile Number Check
asterwise_check_mobile_number
Digit-strips a mobile string (keeping country code digits), reduces it with the owner's name and birth date, and returns harmonic scoring plus interpretive copy.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
mobile_number | string | yes | |
name | string | yes | |
date | string | yes | |
response_format | enum: markdown, json | no |
What it covers
Accepts formats like bare ten digits, plus-country-code with spaces or hyphens; all non-digits drop out before summation and country code digits count toward totals. Compares against owner numerology via upstream rules. Not for vehicle plates (asterwise_check_vehicle_number) or business names.
Workflow
BEFORE: RECOMMENDED — asterwise_get_numerology_profile — anchor Life Path before judging the line.
AFTER: None.
Input
Formatting noise is ignored; only digits contribute. Country code digits are included in the reduction sum.
Output contract
data.input (string — submitted number)
data.input_type (string — 'mobile')
data.total (int — sum of all retained digits)
data.single_digit (int — Pythagorean root, one through nine)
data.is_master (bool — true when total reduces to eleven, twenty-two, or thirty-three)
data.theme (string)
data.favourable_for[] (string array)
data.caution (string)
data.harmony_score (int — one through ten)
Response format
response_format=json serialises the complete response as indented JSON — use this for programmatic parsing, typed clients, and downstream tool chaining. response_format=markdown renders the same data as a human-readable report. Both modes return identical underlying data — no fields are added, removed, or filtered by either mode.
Compute class
FAST_LOOKUP
Errors
INVALID_PARAMS (local — caught before upstream call):
None — all validation is upstream.
INVALID_PARAMS (upstream):
— None — upstream rejection surfaces as MCP INTERNAL_ERROR at the tool layer.
INTERNAL_ERROR:
— Any upstream API failure or timeout → MCP INTERNAL_ERROR
Edge cases:
— Plus signs and punctuation do not affect digit extraction.
Do not confuse with
asterwise_check_vehicle_number — plate digit rules, not SIM numbering.
asterwise_get_business_name_analysis — letter Expression scan, not phone roots.
Connect
Remote MCP endpoint: https://mcp.asterwise.com/mcp. Authenticate with Authorization: Bearer <API key> or OAuth. See the MCP setup guide.