Astral MCP
Astral MCP is a local, stateless MCP server that provides precision-audited astrological computations for AI agents — no API keys or accounts required.
Core Capabilities
Natal Charts: Generate full birth charts with planet positions, houses, aspects, retrogrades, and chart signature. Support for 7 house systems (Placidus, Whole Sign, etc.), tropical & sidereal zodiacs, dual-engine precision audit (<0.01°), and payload privacy modes (full/structured/summary). Output in markdown or JSON.
Current & Future Transits: Show planetary transits to a natal chart, including upcoming activation windows and moon phase. Specify any date/time.
Synastry: Compare two charts for compatibility, including inter-chart aspects and scored dimensions (harmony, chemistry, communication, growth) with a 0–100 overall score.
Moon Phase: Get the moon's phase, sign, illumination percentage, and sun–moon angle for any date/time — no birth data needed.
Geocoding: Convert place names to latitude, longitude, and IANA timezone via OpenStreetMap (no API key; optional, otherwise fully offline).
Utility Tools
Demo Chart: Retrieve a sample natal chart with precision audit to preview the payload structure.
Capabilities & Data Inventory: Query supported features, house systems, zodiacs, bodies, aspects, and data domains.
Agent Manifest: Get setup instructions, tool list, agent rules, and troubleshooting.
Connection Health Check: Verify server operation by testing ephemeris engines with a sample chart.
Key Features
Dual‑Engine Precision: Independent validation by two ephemerides; worst disagreement under 0.01°.
Privacy Modes: “full”, “structured”, or “summary” to control response size (up to ~80% smaller).
Local & Offline: Stateless; stores nothing, requires no credentials. Network only needed for optional geocoding.
Flexible Output: Choose between human‑readable markdown or structured JSON.
Provides geocoding services to convert place names into latitude, longitude, and timezone for astrology calculations.
⚡ Zero-setup install. Wire it into Claude Desktop / Cursor / Hermes and call it immediately — no API key, no OAuth, no account:
npx -y astral-mcp
A local-first MCP server that turns birth data into a full, precision-audited astrological reading for AI agents. Stateless and computational — nothing is stored, no credentials exist, and every tool but optional geocoding runs fully offline.
Astral MCP is Delx's focused astrology product. See the Delx platform map for its boundary with the separate Protocol, Security, Wellness and Commerce properties.
Built by David Mosiah. The astrology engine is ported from the Alkhemia app.
New to the protocol pattern? Read What Is an Astrology MCP Server? for the separation between deterministic chart computation and model interpretation, the recommended agent workflow, and the precision/privacy boundaries.
Ready to calculate one? Follow How to Generate a Natal Chart with MCP for the exact birthplace, timezone, unknown birth-time, payload and precision-audit workflow.
Handling sensitive inputs? Read How to Protect Birth Data in Astrology Agent Workflows for payload minimization, local computation, the optional OpenStreetMap boundary and the limits of privacy_mode=summary.
Why this exists
Most astrology libraries are fragile single-engine wrappers, and most "astrology APIs" want a key and a subscription. Agents need something they can trust and call instantly. Astral MCP does two things differently:
It just works.
npx -y astral-mcpand you're calling charts — no OAuth, no account, no birthplace database to install.It checks itself. Every natal chart is computed with one ephemeris and then independently re-derived, planet by planet, with a second one. If they disagree beyond a tight tolerance, the chart is flagged
reviewinstead of silently returning a wrong placement.
Related MCP server: astroway-mcp
Setup in 60 seconds
Add it to your MCP client (Claude Desktop, Cursor, Hermes, …):
{
"mcpServers": {
"astral": {
"command": "npx",
"args": ["-y", "astral-mcp"]
}
}
}That's the whole setup. There is nothing to authenticate.
Run it directly if you want:
npx -y astral-mcp # stdio (default)
ASTRAL_MCP_TRANSPORT=http npx -y astral-mcp # streamable HTTP on 127.0.0.1:3000See it before you connect
Call astral_demo for a fully-worked example chart (Greenwich, noon, Y2K) including its precision audit — no input, no network, no auth. It shows you the exact payload shape before you send real birth data.
Try it with your agent
"What's my natal chart? I was born 23 Feb 1989, 14:30, in Fortaleza, Brazil."
The agent calls astral_search_birthplace to resolve Fortaleza → lat/lon/timezone, then astral_compute_natal_chart.
"Any big transits hitting my chart this week?" →
astral_current_transits"How compatible are we?" (two birth datas) →astral_synastry"What phase is the moon in today?" →astral_moon_phase
Precision
Astral MCP ships every natal chart with a precision audit. The primary engine (circular-natal-horoscope-js) computes the chart; the verifier (astronomy-engine) re-derives each planet's ecliptic longitude independently. A chart is verified only when every planet agrees within tolerance and lands in the same sign.
Across a built-in accuracy suite of charts spanning 1945–2010 and six timezones, the worst cross-engine disagreement is under 0.01°. Run it yourself:
npm run test:accuracyData availability
Capability | Supported |
Planets (Sun…Pluto), Ascendant, MC/IC | ✅ |
Houses (placidus, koch, campanus, regiomontanus, topocentric, equal-house, whole-sign) | ✅ |
Major aspects with orb, strength, applying/separating | ✅ |
Chart signature (dominant element/modality, pattern, stelliums, angular planets) | ✅ |
Retrogrades · timezone/DST handling | ✅ |
Transits (current + upcoming) · moon phase | ✅ |
Synastry (two-chart comparison, scored) | ✅ |
Tropical & sidereal zodiac | ✅ |
Lunar nodes, Chiron, asteroids, fixed stars | ⏳ planned |
Minor aspects | ⏳ planned |
Interpretation text | ❌ by design — astral-mcp returns structured data; your model writes the reading |
Tools
astral_compute_natal_chart— full natal chart, precision-audited by defaultastral_current_transits— current + upcoming transits to a chart, with moon phaseastral_synastry— compare two charts (harmony / chemistry / communication / growth)astral_moon_phase— moon phase, sign and illumination for any dateastral_search_birthplace— geocode a place to latitude / longitude / timezoneastral_demo— worked example chart, no input neededastral_capabilities— what this server supports and what it doesn'tastral_data_inventory— data domains and recommended first callsastral_agent_manifest— install + usage rules for agentsastral_connection_status— health check via a sample chart + dual-engine audit
The three chart tools (astral_compute_natal_chart, astral_current_transits, astral_synastry) take a privacy_mode parameter — a payload-verbosity axis separate from response_format:
full(default) — the complete payload, including the per-planet precision auditstructured— same structure, redundant/derivable fields droppedsummary— only the high-signal essentials (luminaries + Ascendant, chart signature, top aspects)
A full Greenwich natal payload is ~6.9 KB; summary is ~1.2 KB (~80% smaller), so an agent that only needs a quick read can ask for less and spend fewer tokens.
Notes for accurate readings
Pass the birthplace timezone, not the caller's.
astral_search_birthplacereturns it.birth_timeis optional. Without it, noon is assumed: planet signs stay accurate, but the Ascendant and houses are unreliable.
Privacy & Security
Astral MCP stores nothing and holds no secrets. The only optional network call is astral_search_birthplace (OpenStreetMap), which sends just the place-name string you pass. See SECURITY.md.
Contributing
The computation core in src/engine/ is ported from Alkhemia — keep it framework-free. See AGENTS.md for the development rules and the test gate (npm test).
License
MIT — see LICENSE.
HTTP (v2 stateless)
Default is stdio. Optional Streamable HTTP — no session id, JSON responses, loopback only:
npx -y astral-mcp --http
# GET http://127.0.0.1:3000/health
# POST http://127.0.0.1:3000/mcp (sessionless)Env: ASTRAL_MCP_HOST, ASTRAL_MCP_PORT, ASTRAL_MCP_TRANSPORT=http.
Maintenance
Related MCP Servers
- AlicenseAqualityBmaintenanceOpen Ephemeris is a high-precision astrology API with an MCP server exposing 116+ endpoints across natal charts, transits, synastry, Human Design, BaZi, solar returns, and much more.393MIT

astroway-mcpofficial
AlicenseCqualityBmaintenanceComprehensive astrology MCP exposing every endpoint of the AstroWay Calculation API — natal charts, synastry, transits, Vedic dashas, Tarot, Numerology, Human Design. Sub-arcsecond Swiss Ephemeris precision, 10 000 free credits per month.1002143MIT- Flicense-qualityAmaintenanceMulti-tradition astrology engine that computes real birth charts, transits, and synastry for AI agents via MCP tools.3
- AlicenseAqualityAmaintenanceAstrology MCP server that computes natal charts, transits, synastry, progressions, returns, eclipses, retrogrades, and moon phases from a real ephemeris, enabling AI agents to provide accurate astrological calculations without hallucination.12741MIT
Related MCP Connectors
Horoscope MCP — wraps the keyless Horoscope App API.
WeatherAPI.com MCP — wraps WeatherAPI.com (api.weatherapi.com)
Visual Crossing Weather MCP — wraps the Visual Crossing Weather Timeline API
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/davidmosiah/astral-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server