Skip to main content
Glama
fatenava

fatenava-mcp

Official

fatenava-mcp

English | 繁體中文 | 简体中文 | 日本語 | 한국어

fatenava-mcp MCP server

Cast BaZi, Zi Wei Dou Shu, and Western astrology natal charts from any MCP-capable AI agent.

One tool, three deterministic engines, zero setup: no account, no API key, nothing stored. Powered by the free chart API of FateNava.

What it does

Give it a birth (date, time, place, gender) and it returns structured chart data from up to three systems:

System

What you get

BaZi 八字 (Four Pillars of Destiny)

Four pillars (stems & branches), Day Master, Five-Elements distribution — computed with True Solar Time correction from the birthplace longitude

Zi Wei Dou Shu 紫微斗數 (Purple Star Astrology)

Twelve palaces with major stars, Life Palace, transformations

Western natal chart

Tropical zodiac, Placidus houses: Ascendant, planets by sign/house, elements & modalities

The numbers are computed, not AI-generated — the same birth always produces the same charts. Interpretation is left to your AI agent (or to FateNava's free reading tools).

Related MCP server: mcp-luopan

Quick start

Claude Code

claude mcp add fatenava -- npx -y fatenava-mcp

Codex CLI

# ~/.codex/config.toml
[mcp_servers.fatenava]
command = "npx"
args = ["-y", "fatenava-mcp"]

Cursor / generic MCP client

{
  "mcpServers": {
    "fatenava": {
      "command": "npx",
      "args": ["-y", "fatenava-mcp"]
    }
  }
}

Tools

  • cast_chart — Cast BaZi (Four Pillars), Zi Wei Dou Shu, and Western astrology natal charts from one birth input. Deterministic computation with True Solar Time correction; supports one-line multilingual birth text or structured fields.

cast_chart

Two ways to describe the birth — pick one:

1. One-line text (easiest; the API parses date, time, place and gender, and resolves the city to coordinates + timezone):

{ "text": "1995-08-10 12:00 Taipei female" }

City names in English, Chinese, Japanese, or Korean are accepted.

2. Structured fields:

{
  "year": 1995, "month": 8, "day": 10, "hour": 12, "minute": 0,
  "gender": "female",
  "longitude": 121.5, "latitude": 25.04, "timeZoneId": "Asia/Taipei"
}

Optional:

  • systems: ["bazi", "ziwei", "astro"] — pick a subset to keep the response small (default: all three).

  • birthTimeKnown: false — when the exact hour is unknown. BaZi still returns three pillars; hour-dependent parts are omitted honestly instead of being guessed.

Response shape

{
  "birth": { "date": "1995-08-10", "time": "12:00", "gender": "female", "place": "…" },
  "timeKnown": true,
  "charts": {
    "bazi":  { "ok": true, "view": { "dayMaster": {…}, "fourPillars": […], … } },
    "ziwei": { "ok": true, "view": { "palaces": […], … } },
    "astro": { "ok": true, "view": { "ascendant": {…}, "bodies": […], … } }
  }
}

Field names are English; traditional terms (heavenly stems, earthly branches, palace and star names) come in their native Chinese characters — ask your agent to translate them for the user.

Notes & principles

  • Free & anonymous. The underlying endpoint requires no login and stores nothing.

  • Deterministic. Charts are calculated by tested engines; the AI layer only interprets.

  • Honest about limits. Unknown birth time degrades gracefully instead of inventing an hour. Charts describe tendencies and themes — not fixed fate. Not medical, legal, or financial advice.

  • Learn the concepts: What is BaZi? · What is a natal chart? · What is Zi Wei Dou Shu?

  • Full readings, compatibility (synastry / 合婚) and AI Q&A: fatenava.com

Development

npm install
npm run build
node dist/index.js   # speaks MCP over stdio

FATENAVA_API_BASE env var overrides the API origin (for testing).

License

MIT

Available Tools

1 tool
cast_chartCast destiny charts (BaZi / Zi Wei / Western astrology)A

Cast up to three deterministic destiny charts from one birth: BaZi (Four Pillars, with True Solar Time correction), Zi Wei Dou Shu (Purple Star Astrology), and a Western natal chart (tropical zodiac, Placidus houses). Free and anonymous — no account, nothing stored. Input is either a one-line text birth description, or structured fields (year/month/day/hour/minute + gender + longitude/latitude + timeZoneId). Returns structured JSON per system: field names in English; traditional terms (stems & branches, palace and star names) in their native Chinese characters — translate them for the user as needed. The chart data is computed, not AI-generated; interpretation is up to you. Full reading tools at https://fatenava.com

ParametersJSON Schema
NameRequiredDescriptionDefault
dayNo
hourNoBirth hour 0-23; pass with birthTimeKnown=false if unknown
textNoOne-line birth description: date, time (or omit if unknown), birthplace, gender. Example: "1995-08-10 12:00 Taipei female". City names in English, Chinese, Japanese or Korean are accepted. Use EITHER this field OR the structured fields below.
yearNoBirth year (structured input)
monthNo
genderNoRequired with structured input
minuteNo
systemsNoWhich chart systems to return: "bazi", "ziwei", "astro". Default: all three.
latitudeNo
longitudeNoBirthplace longitude (structured input); used for True Solar Time correction
timeZoneIdNoIANA timezone of the birthplace, e.g. "Asia/Taipei" (structured input)
birthTimeKnownNoSet false when the exact birth time is unknown — BaZi still returns three pillars; hour-dependent parts are omitted honestly

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full behavioral disclosure burden, and it does so well: it states the tool is free and anonymous, stores nothing, returns computed (not AI-generated) data, and that hour-dependent parts are honestly omitted when the birth time is unknown. It does not mention rate limits or error behavior, but the privacy and computation disclosures are substantive for a tool with zero annotation coverage.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is front-loaded with the core purpose and is information-dense — every sentence adds value (inputs, scope, privacy, output format, translation expectation, interpretation boundary). It is slightly long for a tool description, but the density justifies the length without obvious waste.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a 12-parameter tool with no output schema and no annotations, the description is commendably complete: it covers input formats with an example, output structure per system, naming conventions, privacy guarantees, and the behavior when birth time is unknown. Minor omissions such as error cases and rate limits prevent a perfect score, but nothing essential to correctly calling the tool is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 67%, and the description adds meaningful context beyond the schema: it explains that `text` and structured fields are alternatives, ties longitude to the True Solar Time correction, and clarifies that `birthTimeKnown=false` still yields three BaZi pillars. This partially compensates for the schema gaps, though the description does not individually elaborate every parameter.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description names a specific verb (cast) and resource (three destiny chart systems), and enumerates precisely which systems they are — BaZi, Zi Wei Dou Shu, and Western astrology — with meaningful technical qualifiers (True Solar Time correction, tropical zodiac, Placidus houses). It is unmistakably specific about what the tool produces.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives clear usage context by defining the two mutually exclusive input modes — a one-line `text` birth description versus structured fields — and instructs the agent to translate Chinese terms for the user and to delegate interpretation. It stops short of explicit when-to-use versus when-not-to-use exclusions, but with no sibling tools listed, differentiation guidance is less critical.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 1 tool updatev0.1.0
    • First observedcast_chart

TDQS

A4.4/5.0
Disambiguation5/5

With only a single tool, there is no possibility of confusion between tools. The tool's description clearly delineates its single purpose of casting three types of charts.

Naming Consistency5/5

There is only one tool name, 'cast_chart', which is a clear verb_noun pattern and consistent within the server. No deviations exist.

Tool Count3/5

The server contains exactly one tool, which is borderline for adequacy. While it handles three charting systems in one function, the tool count feels thin for a domain that often requires separate operations for detailed readings or additional parameters.

Completeness5/5

The tool comprehensively covers the core function of casting three different destiny charts from birth data, including input flexibility and structured output. There are no obvious gaps within the stated scope of 'casting charts'.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    B
    maintenance
    Enables AI tools to perform Chinese fortune-telling analysis including Ziwei Doushu (Purple Star Astrology) and Bazi (Four Pillars) chart generation, fortune reading, and element analysis. Supports multiple calendar systems and output formats for comprehensive divination services.
    7
    11
    6
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    Provides tools for Bazi (Chinese astrology) chart calculation and analysis, enabling LLMs to generate accurate birth charts, determine patterns, and answer follow-up questions based on actual calculations rather than model knowledge.
    2
    MIT
  • A
    license
    A
    quality
    C
    maintenance
    Enables AI agents to perform Chinese metaphysics calculations including BaZi charts, Tong Shu indicators, solar terms, and more, using a verified engine with 740+ tests.
    8
    8
    MIT
  • A
    license
    A
    quality
    A
    maintenance
    Enables AI agents to calculate deterministic Bazi (Four Pillars) charts with True Solar Time and Earthly Branch interactions, avoiding LLM hallucination of calendrical math.
    6
    161
    140
    MIT

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/fatenava/fatenava-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server