kundali-chart-mcp 0.2.2 → 0.2.4

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 (2) hide show
  1. package/README.md +5 -31
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -27,16 +27,16 @@ Then restart your IDE. That's it.
27
27
  ## ✨ Features
28
28
 
29
29
  - **48 astrology tools** — Charts, doshas, yogas, dasha, transits, compatibility, muhurta
30
- - **Zero local dependencies** — No Python, no ephemeris files
30
+ - **Zero setup** — No Python, no files, no configuration
31
31
  - **AI-ready** — Works with Claude, Cursor, ChatGPT, Gemini, Copilot, any MCP client
32
- - **Free backend** — Hosted on Azure Functions
33
- - **Self-hostable** — Deploy your own in 5 minutes
34
- - **BPHS-grade** — Uses Swiss Ephemeris + vedicastro
32
+ - **Professional grade** — Swiss Ephemeris engine, BPHS-standard calculations
35
33
 
36
34
  ---
37
35
 
38
36
  ## 🔧 Manual Config
39
37
 
38
+ If auto-setup doesn't work:
39
+
40
40
  ```json
41
41
  {
42
42
  "mcpServers": {
@@ -52,7 +52,7 @@ Then restart your IDE. That's it.
52
52
  ## 🪔 All 48 Tools
53
53
 
54
54
  ### Core Chart
55
- - `generate_kundali` — Full Vedic birth chart with all 9 planets, 12 houses, nakshatras
55
+ - `generate_kundali` — Full Vedic birth chart (9 planets, 12 houses, nakshatras)
56
56
  - `list_available_chart_types` — D1–D60 vargas
57
57
  - `list_ayanamsa_modes` — 30+ sidereal modes
58
58
  - `list_house_systems` — Placidus, Koch, Equal, Whole Sign, etc.
@@ -112,32 +112,6 @@ Then restart your IDE. That's it.
112
112
 
113
113
  ---
114
114
 
115
- ## 🏗 Self-Host
116
-
117
- ```bash
118
- cd azure-function
119
- ./deploy.sh
120
- ```
121
-
122
- ---
123
-
124
- ## 📡 API
125
-
126
- ```bash
127
- curl -X POST https://kundali-mcp-func.azurewebsites.net/api/kundali/generate_kundali \
128
- -H "Content-Type: application/json" -d '{
129
- "name": "Rahul",
130
- "city": "Mumbai, India",
131
- "date_of_birth": "1990-08-15",
132
- "time_of_birth": "06:30",
133
- "latitude": 19.076,
134
- "longitude": 72.8777,
135
- "timezone": "Asia/Kolkata"
136
- }'
137
- ```
138
-
139
- ---
140
-
141
115
  ## 📝 License
142
116
 
143
117
  MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kundali-chart-mcp",
3
- "version": "0.2.2",
3
+ "version": "0.2.4",
4
4
  "description": "MCP server for Vedic Kundali chart generation (Azure Function backend).",
5
5
  "type": "module",
6
6
  "bin": {