RishiAI MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@RishiAI MCP Servercast my Vedic chart for 1990-04-15 14:30 in Delhi"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
RishiAI MCP Server
A Model Context Protocol server that exposes Vedic astrology tools powered by the DashaFlow calculation engine.
Works with any MCP-compatible client — VS Code Copilot, Cursor, Claude Desktop, Claude Code, Gemini CLI, Codex, Antigravity, OpenCode, OpenClaw, Pi agent, or any custom app that speaks MCP.
https://github.com/user-attachments/assets/9c183b94-bb54-4af6-867c-fa3daeef2d03
Install
pip install rishi-ai-mcpQuick Start
rishi-ai-mcp # console entry point (after pip install)
python rishi_ai_mcp.py # or run directly from sourceCommunicates over stdio. Any MCP client that can spawn a subprocess and speak MCP can use it — no IDE required.
Setup
Clone this repo into your workspace to get the MCP config + RishiAI agent rules for your IDE:
git clone https://github.com/adarshj322/rishi-ai-mcp.gitThe repo includes ready-to-use configs for three IDEs:
VS Code / GitHub Copilot
.vscode/mcp.json— auto-configures the MCP server.github/copilot-instructions.md— RishiAI persona (always-on).agents/skills/*/SKILL.md— 14 workflow skills (auto-triggered by topic, or invoke via/skill-name)
VS Code Copilot reads .github/copilot-instructions.md for always-on instructions and .agents/skills/ for skills. Just open the cloned folder and the tools + persona + skills are active.
Cursor
.cursor/mcp.json— auto-configures the MCP server.cursor/rules/rishi-ai.mdc— RishiAI persona (always-on core rule).agents/skills/*/SKILL.md— 14 workflow skills (shared, Cursor reads.agents/skills/natively)
Open the cloned folder in Cursor and the tools + persona + skills are active.
Antigravity
.agents/rules/rishi-ai.md— RishiAI persona (always-on).agents/skills/*/SKILL.md— 14 workflow skills.agents/workflows/*.md— 14 slash-command workflows
Antigravity reads .agents/ natively. Configure the MCP server in your Antigravity settings:
command: uvx
args: rishi-ai-mcpOther MCP Clients (Claude Desktop, Claude Code, Gemini CLI, etc.)
Any MCP-compatible client can connect using the same server. Add to your client's MCP config:
{
"mcpServers": {
"vedic-astrology": {
"command": "uvx",
"args": ["rishi-ai-mcp"]
}
}
}For the RishiAI persona, use system_prompt.md as a reference and adapt it to your client's instruction format.
Standalone / Custom Client
from mcp import ClientSession, StdioServerParameters
from mcp.client.stdio import stdio_client
params = StdioServerParameters(command="uvx", args=["rishi-ai-mcp"])
async with stdio_client(params) as (read, write):
async with ClientSession(read, write) as session:
await session.initialize()
result = await session.call_tool("cast_vedic_chart", {
"dob": "1990-04-15", "time": "14:30",
"lat": 28.6139, "lon": 77.2090, "timezone": "Asia/Kolkata"
})
print(result)MCP Tools
cast_vedic_chart
Generates a complete Vedic natal chart.
Parameter | Type | Description |
| string | Date of birth — |
| string | Time of birth — |
| float | Birth latitude (e.g. |
| float | Birth longitude (e.g. |
| string | IANA timezone (e.g. |
| string | Optional — date for Dasha lookup, defaults to today |
Returns: JSON with metadata, panchang, lagna (with D2–D60 signs), planets (with dignity, combustion, Shadbala, all 14 Varga signs, aspects), dashas (5 levels: Maha/Antar/Pratyantar/Sukshma/Prana + timeline), yogas (24 types), ashtakavarga (SAV + BAV + Prashtara), jaimini_karakas, shadbala (with Ishta/Kashta Phala), bhava_chalit, avasthas, kaal_sarpa, graha_yuddha, gandanta, arudha_padas (A1–A12), upapada, karakamsha.
cast_transit_chart
Calculates planetary transits overlaid on a natal chart.
Parameter | Type | Description |
| string | Date to compute transits — |
| string | Date of birth — |
| string | Time of birth — |
| float | Birth latitude |
| float | Birth longitude |
| string | Optional — defaults to |
Returns: JSON with transit planets (sign, degree, nakshatra, sav_points, house from Lagna/Moon), sade_sati status and phase, and rahu_ketu_axis.
calculate_compatibility_tool
Calculates 16-factor compatibility + Kuja Dosha. Person 1 = Male, Person 2 = Female.
Parameter | Type | Description |
| various | Birth details for Person 1 (Male) |
| various | Birth details for Person 2 (Female) |
Returns: 8 Ashtakoot kutas (36 pts), additional kutas (Mahendra, Stree Deergha, Vedha, Rajju, BadConstellations, LagnaHouse7, SexEnergy), exception logic, and Kuja Dosha analysis.
check_muhurtha_tool
Evaluates whether a date/time is auspicious for a specific activity (electional astrology).
Parameter | Type | Description |
| string | One of: |
| string | Date to evaluate — |
| string | Time to evaluate — |
| float | Location latitude |
| float | Location longitude |
| string | IANA timezone string |
Returns: JSON with verdict, score, positive_factors, negative_factors, panchang_suddhi, and marriage_doshas (for marriage activity).
analyze_career_chart
Analyzes career potential using the 10th house, D10 Dashamsha, and planetary significations.
Parameter | Type | Description |
| string | Date of birth — |
| string | Time of birth — |
| float | Birth latitude |
| float | Birth longitude |
| string | IANA timezone string |
Returns: JSON with tenth_house info, d10_indicators, career_themes, and strength_factors.
RishiAI Agent Persona
The repo includes the RishiAI persona — a Vedic astrologer AI that interprets chart data using BPHS methodology.
IDE | Always-on Rule | Skills |
VS Code Copilot |
|
|
Cursor |
|
|
Antigravity |
|
|
Other clients | Adapt from | Adapt workflow steps from |
All IDEs share skills from .agents/skills/ using the Agent Skills open standard.
Workflows
Command | Description |
| Complete natal chart reading |
| Career and professional guidance |
| Marriage timing and compatibility |
| Relationship dynamics |
| Children and progeny |
| Wealth and financial prospects |
| Health tendencies and remedies |
| Education and learning |
| Spiritual path and practices |
| Electional astrology timing |
| Physical compatibility |
| Mundane astrology |
| Past life karma and karmic debts |
| Detailed spouse blueprint — looks, personality, archetype |
Architecture
rishi_ai_mcp.py MCP entry point — 5 tools, pip-installable
└── dashaflow (pip) Calculation engine
├── vedic_calculator Swiss Ephemeris core
├── constants Zodiac, nakshatras, dignities
├── nakshatra Nakshatra lookup
├── panchang Tithi, Vara, Yoga, Karana
├── yoga 24 yoga types + Kaal Sarpa, Graha Yuddha, Gandanta
├── dasha Vimshottari 5-level
├── dignity Dignity, combustion, digbala
├── ashtakavarga SAV, BAV, Prashtara
├── jaimini Karakas, Arudha Padas, Upapada, Karakamsha
├── shadbala Six-fold strength + Ishta/Kashta
├── matchmaking 16-factor compatibility + Kuja Dosha
├── muhurtha Electional astrology
└── career D10 career analysis
.vscode/mcp.json VS Code Copilot MCP config
.github/
└── copilot-instructions.md Always-on rule (VS Code Copilot)
.cursor/
├── mcp.json Cursor MCP config
└── rules/rishi-ai.mdc Always-on core rule (Cursor)
.agents/ Shared across all IDEs
├── rules/rishi-ai.md Always-on agent rule (Antigravity)
├── skills/ 14 workflow skills (SKILL.md per folder)
└── workflows/ 14 slash-command workflows (Antigravity)
system_prompt.md Universal reference prompt (for other clients)Prerequisites
Python 3.10+
dashaflow — installed automatically as dependency
mcp — installed automatically as dependency
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/adarshj322/rishi-ai-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server