@morphemeris/mcp 0.3.0 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +20 -2
- package/dist/index.js +615 -133
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -146,7 +146,20 @@ Add to `~/.gemini/settings.json` (global) or `.gemini/settings.json` (project):
|
|
|
146
146
|
| `get_ayanamsha` | Precession offset for 47 sidereal systems |
|
|
147
147
|
| `get_delta_t` | Delta T (TT - UT) for time scale conversion |
|
|
148
148
|
| `get_sidereal_time` | Greenwich and Local Sidereal Time |
|
|
149
|
-
| `
|
|
149
|
+
| `find_solar_eclipses` | Find upcoming or past solar eclipses with optional local data |
|
|
150
|
+
| `find_lunar_eclipses` | Find upcoming or past lunar eclipses with optional visibility |
|
|
151
|
+
| `find_heliacal_event` | Heliacal rising/setting of planets (first/last visibility) |
|
|
152
|
+
| `find_ingresses` | Find when a planet crosses into a zodiac sign |
|
|
153
|
+
| `batch_requests` | Send up to 50 sub-requests in a single API call |
|
|
154
|
+
| `natal_chart` | Full natal chart with aspects, parallels, dignities, OOB detection |
|
|
155
|
+
| `calculate_aspects` | Aspects and parallels between bodies at a given time |
|
|
156
|
+
| `calculate_dignities` | Essential dignities, scores, and dispositorship chains |
|
|
157
|
+
| `calculate_synastry` | Two-chart synastry with inter-chart aspects |
|
|
158
|
+
| `calculate_composite` | Midpoint composite chart from two charts |
|
|
159
|
+
| `calculate_davison` | Davison relationship chart (time-space midpoint) |
|
|
160
|
+
| `calculate_progressed` | Secondary progressed chart (day-for-a-year) |
|
|
161
|
+
| `calculate_draconic` | Draconic chart (North Node = 0° Aries rotation) |
|
|
162
|
+
| `list_available_values` | Discover valid bodies, house systems, ayanamsha systems, eclipse types, heliacal events, zodiac signs |
|
|
150
163
|
|
|
151
164
|
## Examples
|
|
152
165
|
|
|
@@ -155,7 +168,12 @@ Ask your AI agent:
|
|
|
155
168
|
- "Calculate a natal chart for June 15, 1990 at 2:30 PM in Harrisonburg, VA"
|
|
156
169
|
- "What are the current planetary positions?"
|
|
157
170
|
- "Show me the fixed star Aldebaran's position today"
|
|
158
|
-
- "
|
|
171
|
+
- "When is the next solar eclipse visible from New York?"
|
|
172
|
+
- "Find the next 5 Sun ingresses into Aries"
|
|
173
|
+
- "Get positions for Sun and Moon every day this week" (uses batch)
|
|
174
|
+
- "What aspects does my chart have?" (uses natal_chart or calculate_aspects)
|
|
175
|
+
- "Compare my chart with my partner's" (uses synastry)
|
|
176
|
+
- "What are my current secondary progressions?" (uses progressed)
|
|
159
177
|
|
|
160
178
|
## A note about time zones
|
|
161
179
|
|