@openephemeris/mcp-server 3.10.0 → 3.10.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.
- package/README.md +2 -2
- package/config/dev-allowlist.json +0 -8
- package/dist/index.js +38 -1
- package/dist/server-sse.js +37 -2
- package/dist/tools/apps/chart-wheel-app.d.ts +19 -0
- package/dist/tools/apps/chart-wheel-app.js +478 -0
- package/dist/tools/dev.js +0 -1
- package/dist/tools/index.js +2 -0
- package/dist/ui/chart-wheel.html +479 -0
- package/package.json +3 -2
package/dist/tools/index.js
CHANGED
|
@@ -43,6 +43,8 @@ export async function initTools(profile) {
|
|
|
43
43
|
await import("./specialized/ephemeris_extended.js");
|
|
44
44
|
await import("./specialized/venus_star_points.js");
|
|
45
45
|
await import("./specialized/acg.js");
|
|
46
|
+
// MCP App tools (interactive UI)
|
|
47
|
+
await import("./apps/chart-wheel-app.js");
|
|
46
48
|
}
|
|
47
49
|
}
|
|
48
50
|
/**
|