@openephemeris/mcp-server 3.10.3 → 3.12.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/glama.json ADDED
@@ -0,0 +1,6 @@
1
+ {
2
+ "$schema": "https://glama.ai/mcp/schemas/server.json",
3
+ "maintainers": [
4
+ "MeridianMap"
5
+ ]
6
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openephemeris/mcp-server",
3
- "version": "3.10.3",
3
+ "version": "3.12.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"
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
+ })