@openephemeris/mcp-server 3.4.1 → 3.4.2

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +98 -0
  2. package/LICENSE +21 -0
  3. package/package.json +4 -2
package/CHANGELOG.md ADDED
@@ -0,0 +1,98 @@
1
+ # Changelog
2
+
3
+ All notable changes to `@openephemeris/mcp-server` are documented here.
4
+
5
+ Format follows [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
6
+ Version numbering follows [Semantic Versioning](https://semver.org/).
7
+
8
+ ---
9
+
10
+ ## [3.4.1] — 2026-03-25
11
+
12
+ ### Fixed
13
+ - Chiron position fallback for edge-date calculations now uses full Swiss Ephemeris path instead of simplified approximation
14
+ - SSE server chart wheel responses now correctly deliver native MCP image blocks instead of raw base64 JSON
15
+
16
+ ### Changed
17
+ - Explorer tier daily cap set to 50 credits/day (resets midnight UTC)
18
+ - Catalog and metadata endpoints (`/acg/meta`, `/acg/datasets`, `/catalogs/*`) moved to free tier (0 credits)
19
+
20
+ ---
21
+
22
+ ## [3.4.0] — 2026-03-22
23
+
24
+ ### Added
25
+ - `hd_planetary_return` tool — finds the exact date when a planet returns to its natal position in HD context
26
+ - `hd_opposition` tool — finds the exact date/age of a planet's first opposition (age cycle milestone)
27
+ - `venus_star_points`, `venus_eight_year_star`, `venus_elongations`, `venus_phase`, `venus_stations` — complete Venus Star Point toolkit
28
+ - `ephemeris_planetary_return` — generic multi-planet support for solar, lunar, and outer planet returns
29
+ - `ephemeris_lunar_return` — dedicated monthly lunar return chart
30
+
31
+ ### Changed
32
+ - Asteroid data (Chiron, Ceres, Pallas, Juno, Vesta, Pholus) now included by default in natal chart responses
33
+ - `ephemeris_transits` tool now includes explicit `aspect_angle` parameter with examples for returns and oppositions
34
+
35
+ ---
36
+
37
+ ## [3.3.0] — 2026-03-21
38
+
39
+ ### Added
40
+ - Timezone parameter added to all natal/transit/predictive tools — resolves ambiguous local-time inputs
41
+ - `ephemeris_composite_midpoint` — Davison midpoint composite chart
42
+ - `ephemeris_fixed_stars` — Ptolemaic fixed star positions with orb and conjunction data
43
+ - `ephemeris_hermetic_lots` — Arabic parts / Hermetic Lots (Lot of Fortune, Spirit, etc.)
44
+
45
+ ### Fixed
46
+ - ACG power lines now correctly render for southern hemisphere birth locations
47
+ - Timezone resolution for "America/Denver" and similar IANA names no longer defaults to UTC
48
+
49
+ ---
50
+
51
+ ## [3.2.0] — 2026-03-21
52
+
53
+ ### Added
54
+ - SSE (Server-Sent Events) transport support — enables remote MCP clients without local `npx` installs
55
+ - `ephemeris_chart_wheel` and `ephemeris_bi_wheel` tools now deliver native MCP image blocks (PNG)
56
+ - Payload size safety cap — responses over 500kb return a structured `PAYLOAD_TOO_LARGE` error
57
+
58
+ ### Fixed
59
+ - Composite chart endpoint route corrected in allowlist
60
+
61
+ ---
62
+
63
+ ## [3.1.0] — 2026-03-20
64
+
65
+ ### Added
66
+ - `human_design_composite` — dual-chart BodyGraph overlay for relationship analysis
67
+ - `human_design_penta` — 5-person Penta composite for group/team dynamics
68
+ - `ephemeris_progressed_chart` — secondary progressions (day-for-a-year method)
69
+
70
+ ### Changed
71
+ - Personal tier: 1,500 credits/month (formerly 'Maker' at 750)
72
+ - Startup tier: 15,000 credits/month (formerly 'Pro')
73
+ - Developer tier: 75,000 credits/month
74
+
75
+ ---
76
+
77
+ ## [3.0.0] — 2026-03-15
78
+
79
+ ### Added
80
+ - Full tool allowlist security model — default-deny with `config/dev-allowlist.json`
81
+ - `dev.call` and `dev.list_allowed` generic proxy tools for allowlisted operations
82
+ - `welcome_to_open_ephemeris` MCP Prompt — orientation guide available to MCP clients
83
+ - Server icon registered at `https://mcp.openephemeris.com/icon.png`
84
+ - `verify:release` npm gate script for pre-publish validation
85
+
86
+ ### Breaking
87
+ - Environment variable renamed from `ASTROMCP_API_KEY` to `OPENEPHEMERIS_API_KEY` (old name kept as fallback)
88
+ - Package renamed from `@astromcp/server` to `@openephemeris/mcp-server`
89
+
90
+ ---
91
+
92
+ ## [2.x] — Legacy
93
+
94
+ Earlier versions published under `@astromcp/server`. All users should migrate to `@openephemeris/mcp-server`.
95
+
96
+ ---
97
+
98
+ *[Unreleased changes are tracked in commit history.]*
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025-2026 Open Ephemeris
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/package.json CHANGED
@@ -1,13 +1,15 @@
1
1
  {
2
2
  "name": "@openephemeris/mcp-server",
3
- "version": "3.4.1",
3
+ "version": "3.4.2",
4
4
  "description": "Model Context Protocol server for the Open Ephemeris astronomical computation API",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "files": [
8
8
  "dist",
9
9
  "config/dev-allowlist.json",
10
- "README.md"
10
+ "README.md",
11
+ "CHANGELOG.md",
12
+ "LICENSE"
11
13
  ],
12
14
  "bin": {
13
15
  "openephemeris-mcp": "dist/index.js"