Skip to main content
ClaudeWave

Hosted MCP server for Vedic astrology - panchang, kundali, matching, dashas: 16 tools at kundlit.com/api/mcp

MCP ServersRegistry oficial0 estrellas0 forksJavaScriptMITActualizado today
Install in Claude Code / Claude Desktop
Method: NPX · @kundlit/mcp
Claude Code CLI
claude mcp add kundlit-mcp -- npx -y @kundlit/mcp
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "kundlit-mcp": {
      "command": "npx",
      "args": ["-y", "@kundlit/mcp"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Casos de uso

Resumen de MCP Servers

# Kundlit Vedic Astrology — MCP Server

[![Kundlit MCP server on Glama](https://glama.ai/mcp/servers/@puru991/kundlit-mcp/badge)](https://glama.ai/mcp/servers/@puru991/kundlit-mcp)

Free Vedic astrology computation for AI assistants over the
[Model Context Protocol](https://modelcontextprotocol.io): daily panchang and
muhurta timings for any city, janam kundali birth charts, kundli milan
(ashtakoot) matching, dosha checks, dasha periods, transits, festival and
eclipse calendars, and Vedic numerology — 17 tools (discovered dynamically),
plus prompts and documentation resources.

Results are deterministic — computed live with the Swiss Ephemeris on the
sidereal zodiac (Lahiri ayanamsa) — and backed by classical-text citations
on [kundlit.com](https://kundlit.com).

- **Server URL:** `https://kundlit.com/api/mcp` (hosted, Streamable HTTP)
- **Auth:** none — no account, no API key
- **Rate limit:** 30 requests/minute/IP
- **Docs:** https://kundlit.com/mcp
- **Privacy:** https://kundlit.com/privacy · **Support:** support@kundlit.com

## Install

### 1. `npx` (works with every client, including stdio-only ones)

```bash
npx -y @kundlit/mcp
```

That starts a local stdio MCP server which proxies to the hosted endpoint.
Point any client at it by command:

**Claude Desktop** — `claude_desktop_config.json`:

```json
{
  "mcpServers": {
    "kundlit-astro": {
      "command": "npx",
      "args": ["-y", "@kundlit/mcp"]
    }
  }
}
```

**Cursor** — `.cursor/mcp.json`, or any client that reads a generic
`.mcp.json`:

```json
{
  "mcpServers": {
    "kundlit-astro": {
      "command": "npx",
      "args": ["-y", "@kundlit/mcp"]
    }
  }
}
```

Installed globally (`npm i -g @kundlit/mcp`) the binary is `kundlit-mcp`, so
`"command": "kundlit-mcp"` with no args works too.

### 2. Direct Streamable HTTP (clients with remote-server support)

No bridge process needed — connect straight to the URL.

**Claude Code:**

```bash
claude mcp add --transport http kundlit https://kundlit.com/api/mcp
```

**Config file:**

```json
{
  "mcpServers": {
    "kundlit-astro": {
      "type": "http",
      "url": "https://kundlit.com/api/mcp"
    }
  }
}
```

**Claude (web/desktop):** Settings → Connectors → Add custom connector →
`https://kundlit.com/api/mcp`

Full per-client instructions, example prompts and limitations:
https://kundlit.com/mcp

## What is in this repository

The npm package `@kundlit/mcp` published from here is a **thin client**: a
bidirectional JSON-RPC pump between a local `StdioServerTransport` and a
`StreamableHTTPClientTransport` aimed at `https://kundlit.com/api/mcp`. It
contains no astrology logic and no copy of the tool list, so tools added or
renamed on the hosted server are picked up with no package update.

Frames are forwarded unmodified in both directions with one deliberate
exception: if the hop to the hosted server fails, the bridge answers the
pending request locally with a JSON-RPC `-32001` error (`bin/cli.js`) rather
than letting the local client hang forever on a reply that is never coming.
That error is synthesised by the bridge and was never sent by the server.

The astrology server itself is hosted at kundlit.com and its source is not
public. The manifests here (`.mcp.json`, `server.json`, `.claude-plugin/plugin.json`)
exist so MCP clients, registries and directories can discover and install it.

### Bridge options

```
kundlit-mcp [--url <endpoint>]

  --url <endpoint>   Hosted MCP endpoint (default https://kundlit.com/api/mcp).
                     Also settable via KUNDLIT_MCP_URL; --url wins.
  -h, --help         Usage and a config snippet.
  -v, --version      Package version.
```

stdout carries JSON-RPC and nothing else; all diagnostics, including `--help`
and `--version` output, go to stderr. Requires Node.js 18 or newer.

### Docker

```bash
docker build -t kundlit-mcp .
docker run -i --rm kundlit-mcp
```

The container speaks MCP over stdio, so run it with `-i` and no TTY.

### Development

```bash
npm install
node scripts/smoke.mjs   # end-to-end check against the live hosted server
```

## Capabilities

17 tools, discovered dynamically via `tools/list` — panchang, muhurta and
choghadiya windows, janam kundali, ashtakoot matching, manglik / kaal sarp /
sade sati checks, dasha periods, transits, pancha pakshi, year events,
eclipses, and numerology. Prompts and documentation resources
(`kundlit://docs/methodology`, `kundlit://docs/usage-guide`) are likewise
discovered at runtime; ask your client to list them rather than relying on a
list in this README.

## Example prompts

- "What is today's panchang in Jaipur? When is rahu kaal?"
- "Make a janam kundali for 14 March 1992, 6:45 am, Lucknow — which mahadasha am I running?"
- "Find me a good time tomorrow in Pune to sign a lease — avoid rahu kaal and bhadra."
- "All ekadashi dates in 2026 for Varanasi."

## Notes

- Free-text `place` (any city worldwide) is preferred; latitude/longitude/IANA
  timezone also accepted. Year tools snap to the nearest of 50 supported cities.
- Results are informational and not a substitute for professional advice.
- Every result carries a `Source:` attribution line — please keep it intact;
  that attribution is the price of free access.

## License

MIT — see [LICENSE](LICENSE).
astrologyjyotishkundalimcpmcp-serverpanchangvedic-astrology

Lo que la gente pregunta sobre kundlit-mcp

¿Qué es puru991/kundlit-mcp?

+

puru991/kundlit-mcp es mcp servers para el ecosistema de Claude AI. Hosted MCP server for Vedic astrology - panchang, kundali, matching, dashas: 16 tools at kundlit.com/api/mcp Tiene 0 estrellas en GitHub y se actualizó por última vez today.

¿Cómo se instala kundlit-mcp?

+

Puedes instalar kundlit-mcp clonando el repositorio (https://github.com/puru991/kundlit-mcp) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.

¿Es seguro usar puru991/kundlit-mcp?

+

puru991/kundlit-mcp aún no ha sido auditado por nuestro agente de seguridad. Revisa el repositorio original en GitHub antes de usarlo en producción.

¿Quién mantiene puru991/kundlit-mcp?

+

puru991/kundlit-mcp es mantenido por puru991. La última actividad registrada en GitHub es de today, con 0 issues abiertos.

¿Hay alternativas a kundlit-mcp?

+

Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.

Despliega kundlit-mcp en tu cloud

Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.

¿Mantienes este repo? Añade un badge a tu README

Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.

Featured on ClaudeWave: puru991/kundlit-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/puru991-kundlit-mcp)](https://claudewave.com/repo/puru991-kundlit-mcp)
<a href="https://claudewave.com/repo/puru991-kundlit-mcp"><img src="https://claudewave.com/api/badge/puru991-kundlit-mcp" alt="Featured on ClaudeWave: puru991/kundlit-mcp" width="320" height="64" /></a>

Más MCP Servers

Alternativas a kundlit-mcp