npm fatenava-mcpstdioMITupdated 9d ago
Cast BaZi, Zi Wei Dou Shu, and Western astrology natal charts from any MCP-capable AI agent.
Was kannst du mit fatenava mcp machen?
fatenava-mcp
English | 繁體中文 | 简体中文 | 日本語 | 한국어
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).
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
Installation
fatenava mcp zu deinem Client hinzufügen. Wähl den, den du nutzt.
claude mcp add fatenava-mcp -- npx -y fatenava-mcpcodex mcp add fatenava-mcp -- npx -y fatenava-mcpamp mcp add fatenava-mcp -- npx -y fatenava-mcp{
"mcpServers": {
"fatenava-mcp": {
"command": "npx",
"args": [
"-y",
"fatenava-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"fatenava-mcp": {
"command": "npx",
"args": [
"-y",
"fatenava-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"fatenava-mcp","command":"npx","args":["-y","fatenava-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"fatenava-mcp": {
"command": "npx",
"args": [
"-y",
"fatenava-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"fatenava-mcp": {
"command": "npx",
"args": [
"-y",
"fatenava-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"fatenava-mcp": {
"command": "npx",
"args": [
"-y",
"fatenava-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"fatenava-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"fatenava-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"fatenava-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"fatenava-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y fatenava-mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
Score
39 / 100
Unvollständig
- Dokumentation25/25
- Pflege19/25
- Vertrauen16/20
- Funktionsumfang0/15
- Installation12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 1 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Versionsverlauf
| Versionen | Veröffentlicht |
|---|---|
| 0.1.1Aktuell | 26. Aug. 2026 |