Open Ephemeris
The Open Ephemeris server provides 52+ typed astrology tools powered by NASA JPL DE440 ephemeris for sub-arcsecond, zero-hallucination calculations spanning 1,100 years of astronomical data.
Natal & Birth Charts
Calculate natal charts with planetary positions, house cusps, aspects, and dignities; batch up to 100 charts at once
Generate interactive/static SVG chart wheels; relocation charts for any geographic location
Predictive & Transit Tools
Search transit events over any date range; active transit snapshots
Progressed charts (secondary, solar arc, tertiary), solar/lunar/planetary returns (Saturn, Jupiter, Chiron, etc.)
Moon & Eclipse Tools
Current moon phase, void-of-course status, next lunar phase, and upcoming solar/lunar eclipses with local visibility
Electional Astrology (Timing)
Find optimal timing windows, score any moment astrologically (0–100), track retrograde/direct stations, and search active aspects
Relationship & Comparative Charts
Synastry, composite (standard & midpoint), overlay, and bi-wheel SVG comparisons
Human Design
Full HD charts (Type, Strategy, Authority, Gates, Channels, Incarnation Cross), bodygraph SVGs, composite (couples), Penta (groups), and HD planetary returns/oppositions
Vedic & Chinese Astrology
Vedic (Jyotish) sidereal charts with configurable ayanamsa, nakshatras, and navamsa; Chinese BaZi (Four Pillars) charts
Astrocartography
Global ACG power lines (GeoJSON) and location-specific planetary line hits
Venus Cycle Tools
Venus Star Points, 8-year pentagram pattern, phase (morning/evening star, cazimi), greatest elongations, and retrograde/direct stations
Precision Ephemeris Tools
Single planet positions, house cusps across multiple house systems (Placidus, Whole Sign, Koch, etc.), essential dignities, midpoints, fixed stars, Hermetic Lots/Arabic Parts, sensitive points, and aspect checks between any two longitudes
Authentication & Developer Tools
Account auth management and a generic
dev_callfor direct access to any allowlisted API endpoint
Provides example curl commands for interacting with the OpenEphemeris REST API, useful for debugging and rapid prototyping.
The MCP server is published as an npm package available for integration with AI agents.
The OpenAPI 3.0 specification can be imported into Postman for API testing and exploration.
Provides Python example scripts for natal charts, transit searches, Human Design, and deep data queries via the OpenEphemeris API.
The OpenAPI 3.0 specification can be imported into Swagger UI for API documentation and testing.
Provides TypeScript example code for web rendering and GeoJSON map visualizers, prepared for React setups.
OpenEphemeris MCP Server
Model Context Protocol server for OpenEphemeris — 52 typed astrology tools powered by the NASA JPL DE440 ephemeris. Zero hallucination on planetary positions, dates, and degrees. Covers 1,100 years of astronomical data.
Hosted endpoint: https://mcp.openephemeris.com/mcp (Streamable HTTP, MCP 2025-11-25 spec)
Quick Start
Install via Smithery (recommended)
The fastest way to connect any MCP-compatible client:
npx -y @smithery/cli install @open-ephemeris/openephemeris --client claudeOr browse the listing and copy connection snippets: smithery.ai/servers/open-ephemeris/openephemeris
Connect via AI SDK (Vercel AI SDK)
import Smithery from "@smithery/api"
import { createMCPClient } from "@ai-sdk/mcp"
import { generateText } from "ai"
import { anthropic } from "@ai-sdk/anthropic"
import { createConnection } from "@smithery/api/mcp"
const smithery = new Smithery()
const conn = await smithery.connections.create("{your-namespace}", {
mcpUrl: "https://server.smithery.ai/open-ephemeris/openephemeris",
headers: {
apiKey: "your-openephemeris-api-key", // get one free at openephemeris.com/dashboard
},
})
const { transport } = await createConnection({
client: smithery,
namespace: "{your-namespace}",
connectionId: conn.connectionId,
})
const mcpClient = await createMCPClient({ transport })
const tools = await mcpClient.tools()
const { text } = await generateText({
model: anthropic("claude-sonnet-4-20250514"),
tools,
prompt: "Calculate a natal chart for someone born April 15, 1990 at 2:30 PM in Chicago.",
})
await mcpClient.close()Connect via MCP SDK (TypeScript)
import Smithery from "@smithery/api"
import { Client } from "@modelcontextprotocol/sdk/client/index.js"
import { createConnection } from "@smithery/api/mcp"
const smithery = new Smithery()
const conn = await smithery.connections.create("{your-namespace}", {
mcpUrl: "https://server.smithery.ai/open-ephemeris/openephemeris",
headers: {
apiKey: "your-openephemeris-api-key",
},
})
const { transport } = await createConnection({
client: smithery,
namespace: "{your-namespace}",
connectionId: conn.connectionId,
})
const mcpClient = new Client(
{ name: "my-app", version: "1.0.0" },
{ capabilities: {} }
)
await mcpClient.connect(transport)
const { tools } = await mcpClient.listTools()
const result = await mcpClient.callTool({
name: "ephemeris_natal_chart",
arguments: { datetime: "1990-04-15T14:30:00", latitude: 41.8781, longitude: -87.6298, format: "llm" },
})Connect directly (Streamable HTTP, no Smithery)
import { StreamableHTTPClientTransport } from "@modelcontextprotocol/sdk/client/streamableHttp.js"
import { Client } from "@modelcontextprotocol/sdk/client/index.js"
const transport = new StreamableHTTPClientTransport(
new URL("https://mcp.openephemeris.com/mcp"),
{ requestInit: { headers: { "X-API-Key": "your-openephemeris-api-key" } } }
)
const client = new Client({ name: "my-app", version: "1.0.0" }, { capabilities: {} })
await client.connect(transport)One-click install (Cursor)
Replace
YOUR_API_KEY_HEREin Cursor MCP settings with your API key from https://openephemeris.com/dashboard.
Cursor deeplink payload:
{
"command": "npx",
"args": [
"-y",
"@openephemeris/mcp-server"
],
"env": {
"OPENEPHEMERIS_PROFILE": "dev",
"OPENEPHEMERIS_BACKEND_URL": "https://api.openephemeris.com",
"OPENEPHEMERIS_API_KEY": "YOUR_API_KEY_HERE"
}
}Manual install (stdio MCP clients)
{
"mcpServers": {
"openephemeris": {
"command": "npx",
"args": ["-y", "@openephemeris/mcp-server"],
"env": {
"OPENEPHEMERIS_PROFILE": "dev",
"OPENEPHEMERIS_BACKEND_URL": "https://api.openephemeris.com",
"OPENEPHEMERIS_API_KEY": "YOUR_API_KEY_HERE"
}
}
}
}Platform guide
Detailed setup walkthroughs for each platform are in SETUP.md.
Client | Install mode | Config location |
Smithery | One-click | |
Cursor | One-click deeplink or manual |
|
Claude Desktop (macOS) | Manual |
|
Claude Desktop (Windows) | Manual |
|
Windsurf | Manual |
|
Claude Web / ChatGPT / remote clients | Hosted URL |
|
Client install walkthroughs
Cursor
Click the "Install in Cursor" button above, then replace
YOUR_API_KEY_HEREin Cursor MCP settings.If you prefer manual setup, paste the
mcpServers.openephemerisblock from "Manual install" into~/.cursor/mcp.json.
Claude Desktop (macOS/Windows)
Open the platform config file from the table above.
Add the same
mcpServers.openephemerisblock from "Manual install".Restart Claude Desktop.
Windsurf
Open
~/.codeium/windsurf/mcp_config.json(or the legacy~/.codeium/mcp_config.jsonpath).Add the
mcpServers.openephemerisblock from "Manual install".Restart Windsurf.
Remote-only clients (Claude Web, ChatGPT, etc.)
The server is hosted at https://mcp.openephemeris.com/mcp with full Streamable HTTP support (MCP 2025-11-25 spec). Remote-only clients can connect directly — no bridge/proxy required:
Claude Web: Add
https://mcp.openephemeris.com/mcpas a remote MCP server withX-API-Key: your-keyheaderVia Smithery: Use the Smithery listing for managed connections with any client
Legacy SSE:
https://mcp.openephemeris.com/sseremains available for SSE-only clients
Auth and upgrade behavior in MCP clients
Missing/invalid credentials (
401): tool call fails with a message that points users to sign up/sign in athttps://openephemeris.com/login?signup=true&redirect=%2Fdashboard%3Ftab%3Daccount, then create/manage keys inhttps://openephemeris.com/dashboard?tab=account.Tier-gated endpoint (
403): tool call returns an upgrade-required message withhttps://openephemeris.com/payand dashboard billing/key management link.Monthly quota exhausted (
402): tool call returns usage quota guidance with both dashboard (/dashboard?tab=account) and upgrade (/pay) links.Burst/rate limit (
429): tool call returns retry guidance and links to dashboard usage monitoring.
Related MCP server: Ziwei Astrology MCP Server
What You Can Ask
"Calculate a natal chart for 1990-04-15 at 2:30 PM in Chicago."
"Find all Saturn transits to my natal Sun in the next 6 months."
"Get the current moon phase and void-of-course status."
"Find the next solar eclipse visible from Tokyo."
"Find the best time to sign a contract in March — electional window."
"Generate a Human Design chart for my birth data."
"What is my Vedic (sidereal) chart?"
"Calculate my Chinese BaZi (Four Pillars) chart."
"Show me my Astrocartography power lines — where is my Venus line on the map?"
"Find all ACG lines within 3° of Paris for my chart."
"Calculate a synastry chart between two people."
"Find the next Venus Star Point and my relationship to it."
"What are the active planetary stations in the next 3 months?"
"Calculate primary directions for the next 5 years."
"Find my Firdaria time lord period."
"What is the sidereal time and delta-T right now?"Tools at a Glance
Category | Tool | Tier |
Natal chart |
| Explorer |
Transit forecast |
| Explorer |
Transit chart snapshot |
| Explorer |
Moon phase / VOC |
| Explorer |
Eclipse next visible |
| Explorer |
Electional window |
| Developer |
Moment analysis |
| Developer |
Station tracker |
| Developer |
Aspect search |
| Developer |
Human Design chart |
| Explorer |
HD composite |
| Explorer |
HD penta |
| Explorer |
HD return / opposition |
| Explorer |
Vedic chart |
| Explorer |
BaZi (Chinese) |
| Explorer |
Synastry |
| Developer |
Composite chart |
| Developer |
Relocation chart |
| Developer |
Progressed chart |
| Explorer |
Solar return |
| Developer |
Lunar return |
| Developer |
Planetary return |
| Developer |
Astrocartography lines |
| Developer |
ACG hits at location |
| Scale |
Venus Star Points |
| Explorer |
Chart wheel image |
| Developer |
Bi-wheel image |
| Developer |
Dignities / Midpoints / Fixed stars |
| Explorer |
Tooling Model
Typed tools are preferred for common workflows (natal, transits, moon phase, eclipse, synastry, relocation, electional, Human Design).
Generic tools:
dev.list_allowedreturns all currently allowlisted operations, anddev.callinvokes any allowlisted operation bymethod + path.Security model: default-deny with explicit allowlist in
config/dev-allowlist.json.Deny prefixes block sensitive route families (
/auth,/billing,/admin, etc.).
dev.call input
Parameter | Type | Required | Description |
|
| Yes | HTTP method |
|
| Yes | Absolute API path, e.g. |
|
| No | Query parameters |
|
| No | JSON body for non-GET requests |
|
| No | Convenience mapping to |
|
| No | Convenience mapping to |
|
| No | Legacy compatibility field |
Environment Variables
Variable | Required | Description |
| Yes (unless service key/JWT used) | API key for OpenEphemeris |
| No | Legacy alias for |
| No | Defaults to |
| No |
|
| No | Internal service auth |
| No | Bearer token auth |
| No | Override allowlist file path |
| No | Per-instance user identifier |
Legacy aliases (ASTROMCP_*, MERIDIAN_*) remain supported.
Legal
This package is licensed under the MIT License. However, use of this package to access the OpenEphemeris API constitutes use of the Service and is governed by the OpenEphemeris Terms of Service. By using this package, you agree to those terms. See also the Privacy Policy and Acceptable Use Policy.
Development
npm install
npm run dev
npm run typecheck
npm test
npm run regen:dev-allowlist
npm run check:dev-allowlist
npm run sync:readme
npm run check:readme
npm run verify:releaseDeploying the SSE Server to Fly.io
When you update the MCP server logic (handlers, bug fixes, hardening), you should deploy it so clients connecting via the remote https://mcp.openephemeris.com/mcp endpoint get the updates immediately.
Navigate to
apps/api/mcp-serverRun
fly deploy --remote-only
Note on NPM: Deploying to Fly.io instantly updates the web-accessible SSE tool. However, users installing your tool locally in Cursor/Desktop via npx @openephemeris/mcp-server will only receive the updates once a new version is published to NPM. If your changes are critical, you should bump the version in package.json and run npm publish (or your CI release pipeline) after deploying to Fly.
npm run verify:release is the release gate. It checks:
allowlist freshness against OpenAPI
schema pack freshness
README synchronization
type safety + tests
publish tarball contents (
npm pack --dry-run --json)
Architecture
┌─────────────────────────────────────────────────────────┐
│ MCP Clients │
│ Smithery Gateway · Claude Web · ChatGPT · Remote apps │
└──────────────────┬──────────────────────────────────────┘
│ Streamable HTTP (MCP 2025-11-25)
│ https://mcp.openephemeris.com/mcp
│
┌─────────────────────────────────────────────────────────┐
│ Cursor · Claude Desktop · Windsurf │
└──────────────────┬──────────────────────────────────────┘
│ stdio JSON-RPC
│ npx @openephemeris/mcp-server
│
┌────▼────────────────────┐
│ openephemeris-mcp │
│ Node.js MCP Server │
│ 52 typed tools │
│ auth: Key > JWT │
└────────────┬────────────┘
│ HTTPS
▼
┌────────────────────────┐
│ OpenEphemeris API │
│ api.openephemeris.com │
│ NASA JPL DE440 │
│ 1,100 years of data │
└────────────────────────┘Runtime Snapshot (Generated)
Generated by npm run sync:readme from config/dev-allowlist.json and the live tool registry.
Allowlisted operations: 28
Methods:
GET=4,POST=24,PUT=0,PATCH=0,DELETE=0Registered tools (
OPENEPHEMERIS_PROFILE=dev): 82Typed tools:
acg_hits,acg_power_lines,auth_login,auth_logout,auth_status,bazi_annual_pillar,bazi_chart,bazi_compatibility,bazi_element_balance,bazi_luck_pillars,bazi_ten_gods,bi_wheel_on_cross_aspect_click,bi_wheel_on_house_click,bi_wheel_on_planet_click,bi_wheel_recalculate,bi_wheel_synopsis,bodygraph_recalculate,chart_wheel_on_aspect_click,chart_wheel_on_house_click,chart_wheel_on_planet_click,chart_wheel_recalculate,chinese_bazi,dev_call,dev_list_allowed,electional_aspect_search,electional_moment_analysis,electional_station_tracker,ephemeris_angles_points,ephemeris_aspect_check,ephemeris_bi_wheel,ephemeris_chart_wheel,ephemeris_composite,ephemeris_composite_midpoint,ephemeris_dignities,ephemeris_electional,ephemeris_fixed_stars,ephemeris_hermetic_lots,ephemeris_house_cusps,ephemeris_lunar_return,ephemeris_midpoints,ephemeris_moon_phase,ephemeris_natal_batch,ephemeris_natal_chart,ephemeris_natal_transits,ephemeris_next_eclipse,ephemeris_next_lunar_phase,ephemeris_overlay,ephemeris_planet_position,ephemeris_planetary_return,ephemeris_progressed_chart,ephemeris_relocation,ephemeris_retrograde_status,ephemeris_solar_return,ephemeris_synastry,ephemeris_transits,explore_bazi_chart,explore_bi_wheel,explore_human_design,explore_moon_phase,explore_natal_chart,explore_transit_timeline,explore_vedic_chart,hd_on_center_click,hd_on_channel_click,hd_on_gate_click,hd_on_planet_click,hd_on_variable_click,hd_opposition,hd_planetary_return,human_design_bodygraph,human_design_chart,human_design_composite,human_design_penta,location_search,timezone_resolve,vedic_chart,venus_eight_year_star,venus_elongations,venus_phase,venus_star_points,venus_star_points_conjunctions,venus_stationsGeneric tools:
Allowlist Families
Family | Operations | Example |
| 4 |
|
| 5 |
|
| 5 |
|
| 4 |
|
| 1 |
|
| 6 |
|
| 3 |
|
Why OpenEphemeris for AI Agents?
Most LLMs (like Claude and ChatGPT) struggle heavily with astronomical calculations (trigonometry, Julian date conversions, and planetary lookups). OpenEphemeris serves as a secure, remote math engine.
By pairing LLMs with the OpenEphemeris MCP server, your agents can instantly access:
Zero-hallucination coordinates: Direct, sub-arcsecond NASA JPL DE440 calculations spanning 1,100 years of astronomical data.
LLM-optimized tokens (
format=llm): We compress standard 25,000 token JSON chart responses into minimal text blocks, cutting your inference costs by 50%.Ready-to-use astrology layers: Built-in support for Astrocartography geoJSON lines, Hermetic Lots, Fixed Stars, and complex Human Design matrix generation.
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/openephemeris/openephemeris-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server