Skip to main content

Vehicle Number Check

asterwise_check_vehicle_number

Strips non-digits from a vehicle registration token, reduces the numeric run with owner name and birth date, and returns the same harmony schema as mobile analysis.

Parameters

ParameterTypeRequiredDescription
vehicle_numberstringyes
namestringyes
datestringyes
response_formatenum: markdown, jsonno

What it covers

Handles Indian pattern plates (e.g. MH01AB1234) and international variants; only digits feed totals. Produces vehicle-specific input_type. Does not analyse phone numbers (asterwise_check_mobile_number) or business names.

Workflow

BEFORE: RECOMMENDED — asterwise_get_numerology_profile — owner baseline.
AFTER: None.

Input

Letters and separators are ignored; reduction uses numeric digits only.

Output contract

data.input (string — submitted plate)
data.input_type (string — 'vehicle')
data.total (int — sum of numeric digits)
data.single_digit (int — root)
data.is_master (bool)
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:
— Alphabetic segments are decorative for numerology here — only digits matter.

Do not confuse with

asterwise_check_mobile_number — phone digit rules including country codes.
asterwise_get_business_name_analysis — evaluates business Expression, not registration digits.

Connect

Remote MCP endpoint: https://mcp.asterwise.com/mcp. Authenticate with Authorization: Bearer <API key> or OAuth. See the MCP setup guide.