MCP Server

Free Vedic astrology MCP: birth-chart, panchang & nakshatra tools. Public API, no key required.

Local serverstdio

What is the MCP MCP server?

Free Vedic astrology MCP: birth-chart, panchang & nakshatra tools. Public API, no key required. The mcp mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 3 defined tools rather than through you.

What it actually does

A Model Context Protocol server providing Vedic astrology tools to AI assistants (Claude, Cursor, Continue, etc.).

Its toolset

Everything the assistant can do here goes through one of these:

  • calculate_kundali — Vedic birth chart (D1) preview — Ascendant, Sun/Moon signs & houses, Moon nakshatra, current Dasha
  • get_panchang — Daily Panchang — Tithi, Nakshatra, Yoga, Karana, Rahu Kaal, Abhijit Muhurta, sunrise/sunset
  • get_nakshatra — Detailed nakshatra profile (ruling planet, gana, deity, symbol, keywords, compatibility notes)

Adding it to your client

Installation goes through your MCP client rather than a global install: point it at @edestory/mcp-starmeet on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

When to reach for it

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. MCP's toolset — calculate_kundali, get_panchang, get_nakshatra — is a fair guide to whether it matches your workflow. It is maintained by com.star-meet; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the mcp mcp server does with a few real requests.

Available tools

ToolWhat it does
calculate_kundaliVedic birth chart (D1) preview — Ascendant, Sun/Moon signs & houses, Moon nakshatra, current Dasha
get_panchangDaily Panchang — Tithi, Nakshatra, Yoga, Karana, Rahu Kaal, Abhijit Muhurta, sunrise/sunset
get_nakshatraDetailed nakshatra profile (ruling planet, gana, deity, symbol, keywords, compatibility notes)

How to install the MCP MCP server

{
  "mcpServers": {
    "starmeet": {
      "command": "npx",
      "args": ["-y", "@edestory/mcp-starmeet"]
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Example prompts to try

  • Use MCP to calculate kundali.
  • Use MCP to get panchang.
  • Use MCP to get nakshatra.

Frequently asked questions

It connects MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 3 tools (calculate_kundali, get_panchang, get_nakshatra) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCP directly.