@openephemeris/mcp-server 3.10.3 → 3.10.4
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 +12 -0
- package/dist/tools/dev.js +1 -0
- package/dist/tools/specialized/transits.js +4 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,18 @@ Version numbering follows [Semantic Versioning](https://semver.org/).
|
|
|
7
7
|
|
|
8
8
|
---
|
|
9
9
|
|
|
10
|
+
## [3.10.4] — 2026-04-24
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- `ephemeris_transits` tool description updated with compute surcharge and search range limit documentation
|
|
14
|
+
- `dev_call` credit cost reference now includes compute surcharge information
|
|
15
|
+
- Tier-based compute timeouts: Explorer 30s, Developer 120s, Startup 5m, Scale 10m for compute-heavy endpoints
|
|
16
|
+
- Search range caps: `/predictive/transits/search` limited to 1y (Explorer), 5y (Developer), 10y (Startup)
|
|
17
|
+
- Compute surcharges: requests exceeding 30s incur 1 additional credit per 30s of wall-clock compute
|
|
18
|
+
- Daily credit caps now persistent across server restarts (PostgreSQL-backed)
|
|
19
|
+
|
|
20
|
+
---
|
|
21
|
+
|
|
10
22
|
## [3.10.0] — 2026-04-23
|
|
11
23
|
|
|
12
24
|
### Added
|
package/dist/tools/dev.js
CHANGED
|
@@ -47,6 +47,7 @@ registerTool({
|
|
|
47
47
|
" • ACG / astrocartography: 10 credits (acg/hits: 15 credits)\n" +
|
|
48
48
|
" • Calendar endpoints: 10 credits\n" +
|
|
49
49
|
" • Catalog / metadata / health endpoints: 0 credits\n" +
|
|
50
|
+
" • Compute surcharge: requests > 30s add 1 credit per 30s (predictive, acg, calendar, electional)\n" +
|
|
50
51
|
" • format=llm (token-optimized output): available on all tiers\n\n" +
|
|
51
52
|
"COMMON CALLS:\n" +
|
|
52
53
|
" POST /ephemeris/natal-chart — Full natal chart (body: {subject: {name: 'Name', birth_datetime: {iso: '1990-04-15T14:30:00-05:00'}, birth_location: {latitude: {decimal: 40.0}, longitude: {decimal: -70.0}, timezone: {}}}})\n" +
|
|
@@ -15,7 +15,10 @@ registerTool({
|
|
|
15
15
|
" Example: Chiron Return → transiting_planets=['chiron'], natal_points=['chiron'], aspect_angle=0\n\n" +
|
|
16
16
|
"SUPPORTED BODIES: Sun, Moon, Mercury, Venus, Mars, Jupiter, Saturn, Uranus, Neptune, " +
|
|
17
17
|
"Pluto, Chiron, Pholus, Ceres, Pallas, Juno, Vesta, MeanNode.\n\n" +
|
|
18
|
-
"CREDIT COST: 6 credits per call (1 for natal + 5 for transit search)
|
|
18
|
+
"CREDIT COST: 6 credits per call (1 for natal + 5 for transit search). " +
|
|
19
|
+
"Requests exceeding 30 seconds incur 1 additional credit per 30s of compute time.\n\n" +
|
|
20
|
+
"SEARCH RANGE LIMITS: Explorer tier is limited to 1-year windows; Developer to 5 years. " +
|
|
21
|
+
"Ranges exceeding the limit are silently clamped.\n\n" +
|
|
19
22
|
"EXAMPLE: Find all Saturn transits to the natal Sun/Moon for the next 6 months:\n" +
|
|
20
23
|
" natal_datetime='1990-04-15T14:30:00', natal_latitude=41.8781, natal_longitude=-87.6298,\n" +
|
|
21
24
|
" start_date='2026-01-01', end_date='2026-06-30', transiting_planets=['saturn']",
|