astro-mcp
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@astro-mcpnatal chart for March 15 1990 2:30 PM New York"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
astro-mcp
Astrological MCP Server — high-precision astrology tools for LLM agents.
Implements 14 tools backed by Swiss Ephemeris (pyswisseph) and integrates with any Model Context Protocol client (Claude Desktop, etc.).
Runs locally over stdio or remotely over streamable HTTP — including as a claude.ai custom connector on the free plan:
New to claude.ai connectors? A step-by-step guide in Russian — connecting the free shared instance or deploying your own with one button, project setup and example prompts — lives at drewcyber.github.io/astro-mcp.
Tools
# | Name | Description |
1 |
| Full natal chart: planets, angles, houses, aspects |
2 |
| Transit aspects to natal chart, Moon phase, lunations and void-of-course |
3 |
| Day-for-a-year progressions + Solar Arc |
4 |
| Annual solar return chart |
5 |
| Score candidate birth times against life events |
6 |
| Monthly lunar return chart(s) |
7 |
| Cross-chart aspects + house overlays |
8 |
| Midpoint or Davison composite chart |
9 |
| Annual profection — year lord and activated houses |
10 |
| 24 planetary hours for any day/location |
11 |
| 12 Arabic Parts / Lots (Fortune, Spirit, Marriage, etc.) |
12 |
| Planet position table over a date range |
13 |
| Find exact dates of a specific aspect |
14 |
| Antiscia and contra-antiscia points, with optional transit contacts |
Related MCP server: auseklis
Installation
# 1. Clone
git clone https://github.com/DrewCyber/astro-mcp
cd astro-mcp
# 2. Create virtual environment
python3.11 -m venv .venv
source .venv/bin/activate
# 3. Install package + dev dependencies
pip install -e ".[dev]"
# 4. Download Swiss Ephemeris data files
bash scripts/download_ephe.sh
# 5. Set environment variable
export EPHE_PATH="$(pwd)/ephe"
# 6. Run tests
pytest tests/Claude Desktop configuration
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"astro": {
"command": "/path/to/astro-mcp/.venv/bin/python",
"args": ["-m", "astro_mcp"],
"env": {
"EPHE_PATH": "/path/to/astro-mcp/ephe",
"GEOCODING_PROVIDER": "nominatim",
"GEOCODING_USER_AGENT": "astro-mcp/1.0",
"LOG_LEVEL": "WARNING"
}
}
}
}Remote hosting (claude.ai and other web clients)
Free claude.ai accounts can connect one custom connector — a remote MCP server
at a public HTTPS URL. Set ASTRO_MCP_TRANSPORT=http and the server exposes
the same tools over stateless streamable HTTP at /mcp (plus /health for
uptime pings):
export ASTRO_MCP_TRANSPORT=http
python -m astro_mcp # serves http://127.0.0.1:8080/mcpThe fastest path is the Deploy to Render button above (free, no credit
card). A prebuilt image is also published to GHCR on every release —
docker run -d -p 8080:8080 ghcr.io/drewcyber/astro-mcp:latest serves
http://localhost:8080/mcp with zero build steps. For a public shared
instance, quick cloudflared tunnels, Google Cloud Run, Koyeb and
troubleshooting, see DEPLOY.md.
Environment Variables
Variable | Default | Description |
|
|
|
|
| Bind address for the HTTP transport (containers want |
|
| Port for the HTTP transport |
|
| Path to Swiss Ephemeris |
|
|
|
| — | Required if |
|
| Nominatim user-agent |
|
| LRU cache size for geocoding results |
|
| Persistent geocode cache so lookups survive a restart. Stores only city → lat/lon/tz. Set empty to disable |
|
|
|
|
| Global orb multiplier (0.1–3.0) |
|
|
|
|
| Python logging level |
Architecture
src/astro_mcp/
├── server.py # MCP server — tool registration and dispatch
├── schemas.py # Pydantic input models (source of the JSON schemas)
├── config.py # Settings from environment variables
├── core/
│ ├── models.py # Data models and astrological constants
│ ├── errors.py # AstroError and the structured error codes
│ ├── ephemeris_provider.py # Swiss Ephemeris wrapper (pyswisseph)
│ ├── geocoding.py # City → lat/lon/tz (geopy + timezonefinder)
│ ├── moon.py # Lunar phase, lunations and void-of-course
│ └── formatters.py # LLM-optimized serialization
└── tools/
├── natal.py # Tool 1
├── transits.py # Tool 2
├── progressions.py # Tool 3
├── returns.py # Tools 4 + 6
├── rectification.py # Tool 5
├── synastry.py # Tools 7 + 8
├── profections.py # Tool 9
├── planetary_hours.py # Tool 10
├── arabic_parts.py # Tool 11
├── ephemeris.py # Tools 12 + 13
└── antiscia.py # Tool 14Output Format
All tools return compact JSON without whitespace to minimise LLM context tokens (~75% smaller than verbose JSON). Planet codes are abbreviated (Su, Mo, Me, etc.), aspects use 3-letter codes (Cnj, Tri, Squ), and the retrograde flag ("R":true) is omitted when direct to save additional tokens.
Failures use the same contract, so a client never has to parse prose:
{"error":true,"code":"INPUT_ERROR","message":"Invalid arguments for 'calculate_natal_chart'.","hint":"birth_location.lat: Input should be less than or equal to 90"}Planet Codes
Supported codes across tools:
SuSunMoMoonMeMercuryVeVenusMaMarsJuJupiterSaSaturnUrUranusNeNeptunePlPlutoChChironLiBlack Moon Lilith (Mean Apogee)NNNorth Node (True Node by default; Mean Node whenNODE_TYPE=mean)SNSouth NodeAsteroids (where
include_asteroidsis supported):CeCeres,PaPallas,JunJuno,VesVesta
Pass include_legend: true to calculate_natal_chart or calculate_transits
to get a one-shot decoding dictionary for all codes. Aspect entries carry a
sig field (0–1 significance: body weight × aspect weight × orb tightness);
min_significance / top_n trim the lists, and degree_format defaults to
"dec" ("dms" restores human-readable degree strings).
API Notes
get_ephemerisaccepts either a singleplanetor a list of planets.get_ephemeris.stepsupports1h,2h,3h,6h,12h,1d,7d,30d.get_ephemerisnow returns atimezonefield and formatsdtinoutput_tz.find_aspect_exact_dates.modesupports:transit-to-transitfor two moving bodiestransit-to-natalfor transit to a natal planet/angleauto(default) infers mode from presence ofbirth_*
Testing
pytest tests/ -v --cov=src/astro_mcp --cov-report=term-missingGolden-chart regressions live inline in the test suite (tests/test_audit_regressions.py) and were verified against Astro.com and Solar Fire.
License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
Western natal charts, horoscopes, transits and synastry for AI agents, verified vs NASA JPL.
Real astrology for AI agents: cosmic weather, synastry, timing, astrocartography, and divination.
Vedic and Western astrology for AI agents: charts, dasha, matchmaking, panchanga, numerology, tarot.
Astrology transit forecasts, timelines and significant-date feeds for AI agents.
Related MCP Servers
- FlicenseNot gradedqualityCmaintenanceMulti-tradition astrology engine that computes real birth charts, transits, and synastry for AI agents via MCP tools.8-
- AlicenseAqualityBmaintenanceAstrology 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.1223 npm1MIT
- FlicenseAqualityDmaintenanceProvides astronomical calculations using the Swiss Ephemeris library, including planetary positions, houses, chart points, and asteroids for any date and location.49-
- AlicenseAqualityAmaintenancePrecision-audited astrology MCP for natal charts, transits, synastry and moon phases. No API key.1047 npmMIT