@openephemeris/mcp-server 3.0.1 → 3.1.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/README.md +6 -5
- package/config/dev-allowlist.json +1319 -1165
- package/dist/backend/client.d.ts +12 -0
- package/dist/backend/client.js +99 -35
- package/dist/index.js +5 -0
- package/dist/schema-packs/llm.d.ts +1 -1
- package/dist/schema-packs/llm.js +1 -1
- package/dist/tools/dev.js +7 -3
- package/dist/tools/index.d.ts +7 -0
- package/package.json +18 -21
package/README.md
CHANGED
|
@@ -161,8 +161,8 @@ OpenEphemeris API
|
|
|
161
161
|
|
|
162
162
|
Generated by `npm run sync:readme` from `config/dev-allowlist.json` and the live tool registry.
|
|
163
163
|
|
|
164
|
-
- Allowlisted operations: **
|
|
165
|
-
- Methods: `GET=22`, `POST=
|
|
164
|
+
- Allowlisted operations: **67**
|
|
165
|
+
- Methods: `GET=22`, `POST=45`, `PUT=0`, `PATCH=0`, `DELETE=0`
|
|
166
166
|
- Registered tools (`ASTROMCP_PROFILE=dev`): **10**
|
|
167
167
|
- Typed tools: `ephemeris.electional`, `ephemeris.moon_phase`, `ephemeris.natal_chart`, `ephemeris.next_eclipse`, `ephemeris.relocation`, `ephemeris.synastry`, `ephemeris.transits`, `human_design.chart`
|
|
168
168
|
- Generic tools: `dev.call`, `dev.list_allowed`
|
|
@@ -171,14 +171,15 @@ Generated by `npm run sync:readme` from `config/dev-allowlist.json` and the live
|
|
|
171
171
|
|
|
172
172
|
| Family | Operations | Example |
|
|
173
173
|
|---|---:|---|
|
|
174
|
-
| `acg` |
|
|
174
|
+
| `acg` | 4 | `POST /acg/ccg`, `GET /acg/health` |
|
|
175
175
|
| `catalogs` | 3 | `GET /catalogs/bodies`, `GET /catalogs/fixed-stars` |
|
|
176
|
-
| `comparative` |
|
|
176
|
+
| `comparative` | 5 | `POST /comparative/composite`, `POST /comparative/composite/midpoint` |
|
|
177
177
|
| `electional` | 5 | `GET /electional/aspect-search`, `GET /electional/find-window` |
|
|
178
|
-
| `ephemeris` |
|
|
178
|
+
| `ephemeris` | 29 | `POST /ephemeris/angles-points`, `POST /ephemeris/aspect-check` |
|
|
179
179
|
| `health` | 1 | `GET /health` |
|
|
180
180
|
| `human-design` | 6 | `POST /human-design/bodygraph`, `POST /human-design/chart` |
|
|
181
181
|
| `location` | 2 | `GET /location/autocomplete`, `GET /location/reverse` |
|
|
182
182
|
| `predictive` | 8 | `POST /predictive/events`, `POST /predictive/returns` |
|
|
183
183
|
| `timezone` | 2 | `POST /timezone/lookup`, `POST /timezone/offset` |
|
|
184
|
+
| `visualization` | 2 | `POST /visualization/bi-wheel`, `POST /visualization/chart-wheel` |
|
|
184
185
|
<!-- GENERATED:RUNTIME_SNAPSHOT:END -->
|