Number Meaning
asterwise_get_number_meaning
Returns dictionary-style numerology copy for a single integer, including interpretation, keywords, and stubbed extended fields.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
number | integer | yes | |
response_format | enum: markdown, json | no |
What it covers
Static reference for any whole number from one through thirty-three inclusive (includes master numbers eleven, twenty-two, thirty-three plus every intermediate value). No name or date. data.theme, data.advice, data.opportunities[], and data.challenges[] are stubs (null or empty). Not personalised profiling (asterwise_get_numerology_profile).
Workflow
BEFORE: None — standalone.
AFTER: None.
Input
number must pass local guard: inclusive range one through thirty-three; values outside that band raise MCP INVALID_PARAMS before the HTTP call.
Output contract
data.number (int)
data.context (string — 'general')
data.interpretation (string)
data.keywords[] (string array)
data.theme (currently null — stub)
data.opportunities[] (currently empty — stub)
data.challenges[] (currently empty — stub)
data.advice (currently null — stub)
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):
— number less than 1 or greater than 33 → MCP INVALID_PARAMS
INVALID_PARAMS (upstream):
— None — further rejection surfaces as MCP INTERNAL_ERROR at the tool layer.
INTERNAL_ERROR:
— Any upstream API failure or timeout → MCP INTERNAL_ERROR
Edge cases:
— Accepts every integer in the inclusive one..thirty-three range, not only master numbers.
Do not confuse with
asterwise_get_numerology_profile — computes personal numbers from name and date, not a static dictionary row.
asterwise_get_lucky_numbers — personalised lucky list, not reference meanings.
Connect
Remote MCP endpoint: https://mcp.asterwise.com/mcp. Authenticate with Authorization: Bearer <API key> or OAuth. See the MCP setup guide.