
Astronomy Oracle MCP
- 3 repo stars
- Updated August 1, 2026
- gregario/astronomy-oracle
Astronomy Oracle is a MCP server that provides OpenNGC catalog data and observing session planning for agent-driven astronomy research.
About
Astronomy Oracle is a Model Context Protocol server that exposes OpenNGC-scale catalog data—over thirteen thousand objects—and observing session planning capabilities to coding agents. developers exploring sky-map apps, telescope assistant bots, or club newsletter automation can install the stdio npm package and ground early specs in real object metadata instead of vague constellation trivia. Skillselion shelves it under Idea › Research because its first value is discovery: confirming catalog depth, filter needs, and session-planning UX before you commit to Build integrations or mobile star charts. It is data-and-planning infrastructure, not a planetarium renderer or hardware mount driver. Version 0.1.0 indicates a focused oracle; combine it with your own ephemeris, location, and weather services when you move from research notes to shipped product.
- 13,000+ astronomical objects sourced from OpenNGC catalog data
- Observing session planner tooling for agent-assisted astronomy workflows
- npm stdio package astronomy-oracle version 0.1.0
- Pairs with stargazing apps, club tools, and educational content pipelines
Astronomy Oracle MCP by the numbers
- Data as of Aug 10, 2026 (Skillselion catalog sync)
claude mcp add astronomy-oracle -- npx -y astronomy-oracleAdd your badge
Show developers this MCP server is listed on Skillselion. Paste this into your README.
| repo stars | ★ 3 |
|---|---|
| Package | astronomy-oracle |
| Transport | STDIO |
| Auth | None |
| Last updated | August 1, 2026 |
| Repository | gregario/astronomy-oracle ↗ |
What it does
Plan observing sessions and query deep-sky catalog data from OpenNGC while researching an astronomy app or educational agent.
Who is it for?
Best when you're validating stargazing tools, educational agents, or hobby APIs that need catalog-backed research in Claude Code or Cursor.
Skip if: Professional observatory scheduling at scale, real-time mount control, or teams that only need static constellation marketing copy.
What you get
After connecting the stdio MCP, you can research object lists, catalog fields, and session plans that inform prototypes and feature scope.
- Running Astronomy Oracle stdio MCP instance
- Research-backed object lists and catalog queries
- Draft observing session plans to inform product requirements
By the numbers
- 13,000+ objects from OpenNGC
- Package version 0.1.0
- Transport: stdio via npm identifier astronomy-oracle
README.md
Astronomy Oracle
Accurate astronomical catalog data and observing session planner for LLM assistants. Stops hallucinated magnitudes, coordinates, and visibility.
Features
- 3 tools for object lookup, catalog search, and observing session planning
- 13,000+ deep-sky objects from the OpenNGC catalog (NGC, IC, Messier, and addendum objects)
- Deterministic astronomy math — Julian dates, sidereal time, alt/az conversion, rise/transit/set times
- Zero network dependency — all data is bundled, all calculations are local
Install
Run directly with npx:
npx astronomy-oracle
Or install globally:
npm install -g astronomy-oracle
Configuration
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"astronomy-oracle": {
"command": "npx",
"args": ["-y", "astronomy-oracle"]
}
}
}
Claude Code
claude mcp add astronomy-oracle -- npx -y astronomy-oracle
Tool Reference
lookup_object
Look up a celestial object by Messier number, NGC/IC designation, or common name. Optionally compute visibility from a given location and time.
{
"name": "lookup_object",
"arguments": {
"name": "M31",
"latitude": 51.5,
"longitude": -0.1,
"date": "2025-06-15T22:00:00Z"
}
}
Returns detailed object data: type, coordinates (RA/Dec), magnitude, angular size, surface brightness, Hubble type, cross-references, and (when location is provided) current altitude/azimuth with rise/transit/set times.
search_objects
Search and filter the catalog by type, constellation, magnitude range, angular size, or catalog membership.
{
"name": "search_objects",
"arguments": {
"type": "PN",
"constellation": "Lyr",
"maxMagnitude": 12.0,
"limit": 10
}
}
Returns a formatted table of matching objects sorted by brightness. Supports filtering by object type (Galaxy, Planetary Nebula, Open Cluster, etc.), constellation, magnitude range, minimum angular size, and catalog (Messier, Caldwell, NGC, IC).
plan_session
Generate an observing session plan for a given location and date. Returns the best objects to observe grouped by time window.
{
"name": "plan_session",
"arguments": {
"latitude": 40.7,
"longitude": -74.0,
"date": "2025-03-20",
"minAltitude": 20,
"maxMagnitude": 10.0,
"types": ["G", "PN", "GCl"]
}
}
Returns objects grouped into three windows (evening, midnight, pre-dawn), scored by observability based on altitude, magnitude, and angular size.
Data Sources
| Source | License | Description |
|---|---|---|
| OpenNGC | CC-BY-SA 4.0 | NGC/IC/Messier catalog with coordinates, magnitudes, dimensions, and cross-references |
The OpenNGC data is included under the Creative Commons Attribution-ShareAlike 4.0 International License. See the OpenNGC repository for full attribution.
Development
# Run tests
npm test
# Build
npm run build
# Run in development mode (tsx)
npm run dev
# Open MCP Inspector
npm run inspect
License
MIT for code. CC-BY-SA 4.0 for OpenNGC data.
Recommended MCP Servers
How it compares
Catalog and observing-planning data MCP, not a planetarium render skill or space-weather alerting service.
FAQ
Who is Astronomy Oracle MCP for?
Developers and enthusiasts creating astronomy apps, bots, or content who want agents grounded in OpenNGC-style object data during research.
When should I use Astronomy Oracle MCP?
Use it in Idea and early Validate when exploring catalog coverage, observing workflows, and feature lists before building star maps or APIs.
How do I add Astronomy Oracle MCP to my agent?
Install the npm package astronomy-oracle, add it as a stdio MCP server in your agent client, and call the catalog and session planner tools during research sessions.