@openephemeris/mcp-server 3.10.4 → 3.13.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 +5 -4
- package/config/dev-allowlist.json +83 -2
- package/dist/index.js +48 -29
- package/dist/server-sse.js +49 -30
- package/dist/tools/apps/bi-wheel-app.d.ts +38 -0
- package/dist/tools/apps/bi-wheel-app.js +459 -0
- package/dist/tools/apps/bodygraph-app.d.ts +22 -0
- package/dist/tools/apps/bodygraph-app.js +633 -0
- package/dist/tools/apps/chart-wheel-app.d.ts +10 -6
- package/dist/tools/apps/chart-wheel-app.js +202 -56
- package/dist/tools/index.d.ts +18 -20
- package/dist/tools/index.js +25 -0
- package/dist/ui/bi-wheel.html +81 -0
- package/dist/ui/bodygraph.html +514 -0
- package/dist/ui/chart-wheel.html +168 -55
- package/glama.json +6 -0
- package/package.json +5 -3
- package/smithery.yaml +50 -0
package/glama.json
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openephemeris/mcp-server",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.13.0",
|
|
4
4
|
"description": "Model Context Protocol server for the Open Ephemeris astronomical computation API",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -9,7 +9,9 @@
|
|
|
9
9
|
"config/dev-allowlist.json",
|
|
10
10
|
"README.md",
|
|
11
11
|
"CHANGELOG.md",
|
|
12
|
-
"LICENSE"
|
|
12
|
+
"LICENSE",
|
|
13
|
+
"glama.json",
|
|
14
|
+
"smithery.yaml"
|
|
13
15
|
],
|
|
14
16
|
"bin": {
|
|
15
17
|
"openephemeris-mcp": "dist/index.js"
|
|
@@ -18,7 +20,7 @@
|
|
|
18
20
|
"test": "test"
|
|
19
21
|
},
|
|
20
22
|
"scripts": {
|
|
21
|
-
"build:ui": "cd src/ui/chart-wheel && npx vite build",
|
|
23
|
+
"build:ui": "cd src/ui/chart-wheel && npx vite build && cd ../../.. && cd src/ui/bodygraph && npx vite build && cd ../../.. && cd src/ui/bi-wheel && npx vite build",
|
|
22
24
|
"build": "npm run build:ui && tsc -p tsconfig.build.json",
|
|
23
25
|
"prebuild": "node -e \"const fs=require('fs');fs.rmSync('dist',{recursive:true,force:true})\"",
|
|
24
26
|
"dev": "tsx watch src/index.ts",
|
package/smithery.yaml
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# Open Ephemeris MCP Server — Smithery configuration
|
|
2
|
+
# Spec: https://smithery.ai/docs/build/publish
|
|
3
|
+
#
|
|
4
|
+
# Two transports are available:
|
|
5
|
+
# stdio — local npx invocation (this config, used by Claude Desktop / Cursor)
|
|
6
|
+
# http — hosted Streamable HTTP at https://mcp.openephemeris.com/mcp
|
|
7
|
+
|
|
8
|
+
name: Open Ephemeris
|
|
9
|
+
description: >
|
|
10
|
+
NASA JPL DE440-backed astronomical computation engine for AI agents. 52+ typed tools covering
|
|
11
|
+
natal charts, transit forecasting, Human Design charts, eclipses, astrocartography power
|
|
12
|
+
lines, Venus Star Points, electional timing windows, synastry, composite charts, Vedic
|
|
13
|
+
charts, Chinese BaZi, and more — powered by JPL DE440 ephemerides for sub-arcsecond
|
|
14
|
+
zero-hallucination accuracy. Includes an LLM-optimized output format
|
|
15
|
+
(format=llm) that compresses chart responses by ~50%. Free Explorer tier available.
|
|
16
|
+
iconUrl: https://mcp.openephemeris.com/icon.png
|
|
17
|
+
homepage: https://openephemeris.com
|
|
18
|
+
|
|
19
|
+
# JSON Schema for the configuration form rendered in Smithery's UI
|
|
20
|
+
configSchema:
|
|
21
|
+
type: object
|
|
22
|
+
required:
|
|
23
|
+
- apiKey
|
|
24
|
+
properties:
|
|
25
|
+
apiKey:
|
|
26
|
+
type: string
|
|
27
|
+
description: >
|
|
28
|
+
Your Open Ephemeris API key. Get a free Explorer key at
|
|
29
|
+
https://openephemeris.com/dashboard — no credit card required.
|
|
30
|
+
default: ""
|
|
31
|
+
format:
|
|
32
|
+
type: string
|
|
33
|
+
enum:
|
|
34
|
+
- json
|
|
35
|
+
- llm
|
|
36
|
+
description: >
|
|
37
|
+
Default output format for all tools. 'llm' returns compact,
|
|
38
|
+
token-optimized output (~50% smaller). 'json' returns full verbose JSON.
|
|
39
|
+
Individual tool calls can override this setting.
|
|
40
|
+
default: json
|
|
41
|
+
|
|
42
|
+
# How to start the server locally (stdio transport for Claude Desktop / Cursor)
|
|
43
|
+
startCommand:
|
|
44
|
+
type: stdio
|
|
45
|
+
commandFunction: |-
|
|
46
|
+
(config) => ({
|
|
47
|
+
command: "npx",
|
|
48
|
+
args: ["-y", "@openephemeris/mcp-server@latest"],
|
|
49
|
+
env: { OPENEPHEMERIS_API_KEY: config.apiKey }
|
|
50
|
+
})
|