@openephemeris/mcp-server 3.21.1 → 3.23.0
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/CHANGELOG.md +41 -0
- package/LICENSE +21 -21
- package/README.md +2 -2
- package/dist/index.js +45 -0
- package/dist/server-sse.js +52 -3
- package/dist/tools/apps/bazi-app.d.ts +24 -0
- package/dist/tools/apps/bazi-app.js +231 -0
- package/dist/tools/apps/bi-wheel-app.js +3 -1
- package/dist/tools/apps/bodygraph-app.js +55 -10
- package/dist/tools/apps/moon-phase-app.js +141 -93
- package/dist/tools/apps/transit-timeline-app.d.ts +20 -0
- package/dist/tools/apps/transit-timeline-app.js +302 -0
- package/dist/tools/apps/vedic-chart-app.d.ts +25 -0
- package/dist/tools/apps/vedic-chart-app.js +297 -0
- package/dist/tools/index.js +3 -0
- package/dist/tools/specialized/bi_wheel.js +1 -0
- package/dist/tools/specialized/chart_wheel.js +1 -0
- package/dist/tools/specialized/hd_bodygraph.js +1 -0
- package/dist/tools/specialized/human_design.js +1 -0
- package/dist/tools/specialized/moon.js +1 -0
- package/dist/tools/specialized/natal.js +6 -1
- package/dist/ui/bazi.html +6928 -0
- package/dist/ui/bi-wheel.html +2091 -2031
- package/dist/ui/bodygraph.html +286 -221
- package/dist/ui/chart-wheel.html +552 -453
- package/dist/ui/moon-phase.html +310 -42
- package/dist/ui/transit-timeline.html +6911 -0
- package/dist/ui/vedic-chart.html +7043 -0
- package/package.json +2 -2
|
@@ -19,6 +19,7 @@ registerTool({
|
|
|
19
19
|
"(Generator, Manifesting Generator, Projector, Manifestor, Reflector), Strategy, Authority, " +
|
|
20
20
|
"Profile (e.g. 1/3, 2/4), defined and undefined Centers, activated Gates and Channels, " +
|
|
21
21
|
"Incarnation Cross, and both Personality (conscious) and Design (unconscious) planetary positions.\n\n" +
|
|
22
|
+
"Returns raw JSON. For a user-facing interactive bodygraph, use explore_human_design instead.\n\n" +
|
|
22
23
|
"CREDIT COST: 2 credits per call.\n\n" +
|
|
23
24
|
"Human Design uses two calculation moments: the birth time (Personality) and ~88° of Sun motion " +
|
|
24
25
|
"before birth (~3 months prior, the Design calculation). The API handles this automatically.\n\n" +
|
|
@@ -9,6 +9,7 @@ registerTool({
|
|
|
9
9
|
"⚠️ THIS TOOL ANSWERS: 'What phase is the moon in right now (or at a given datetime)?'\n" +
|
|
10
10
|
"❌ THIS TOOL DOES NOT ANSWER: 'When is the next new moon / full moon?'\n" +
|
|
11
11
|
"→ For upcoming phase DATES use ephemeris_next_lunar_phase instead.\n\n" +
|
|
12
|
+
"For a user-facing interactive moon-phase dial, use explore_moon_phase instead.\n\n" +
|
|
12
13
|
"CREDIT COST: 1 credit per call.\n\n" +
|
|
13
14
|
"If no datetime is provided, returns the current (live) moon phase.\n\n" +
|
|
14
15
|
"EXAMPLE: Get moon phase for a specific date/time:\n" +
|
|
@@ -87,7 +87,11 @@ registerTool({
|
|
|
87
87
|
latitude: { decimal: args.latitude },
|
|
88
88
|
longitude: { decimal: args.longitude }
|
|
89
89
|
},
|
|
90
|
-
}
|
|
90
|
+
},
|
|
91
|
+
// The Go endpoint computes the aspect grid only when asked. The tool
|
|
92
|
+
// documents a "major aspect grid" as core output, so always opt in —
|
|
93
|
+
// otherwise the response comes back with `"aspects": []`.
|
|
94
|
+
options: { include_aspects: true },
|
|
91
95
|
};
|
|
92
96
|
if (args.timezone) {
|
|
93
97
|
body.subject.birth_location.timezone = { iana_name: args.timezone };
|
|
@@ -104,6 +108,7 @@ registerTool({
|
|
|
104
108
|
}
|
|
105
109
|
if (args.include_arabic_parts) {
|
|
106
110
|
body.options = {
|
|
111
|
+
...body.options,
|
|
107
112
|
include_hermetic_lots: true,
|
|
108
113
|
};
|
|
109
114
|
}
|